-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "reddit-top-tens",
"version": "1.0.0",
"description": "Reddit app to display users top ten subs containing the top ten posts each with the top ten comments",
"main": "index.js",
"scripts": {
"build": "webpack -d --watch",
"start": "nodemon server/server.js",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/o0Maikeru0o/Reddit-Top-Tens.git"
},
"author": "Michael Nickandros",
"license": "ISC",
"bugs": {
"url": "https://github.com/o0Maikeru0o/Reddit-Top-Tens/issues"
},
"homepage": "https://github.com/o0Maikeru0o/Reddit-Top-Tens#readme",
"dependencies": {
"@auth0/auth0-spa-js": "^1.2.3",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"nodemon": "^1.19.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-icons": "^3.7.0",
"react-onclickoutside": "^6.9.0",
"react-pose": "^4.0.8",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^4.2.0",
"image-webpack-loader": "^6.0.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8"
}
}