-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.11 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-redux-template",
"description": "An example app using the MERN stack, with the main branch using React and Redux.",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=10.14.2",
"npm": ">=6.4.1",
"yarn": ">=1.22.5"
},
"scripts": {
"startDev": "cd ./server && npm run server && cd ./client && npm run start",
"make-standard": "eslint --fix ./src;exit 0",
"lint": "eslint ."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@upstatement/prettier-config": "^0.3.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"g": "^2.0.1",
"typescript-eslint": "0.0.1-alpha.0"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@popperjs/core": "^2.8.3",
"babel-loader": "^8.1.0",
"bootstrap": "^4.6.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"jquery": "^3.5.1",
"jsonwebtoken": "^8.5.1",
"material-ui": "^0.20.2",
"mongod": "^2.0.0",
"mongodb": "^3.6.3",
"node-notifier": "^8.0.1",
"nodemon": "^2.0.7",
"object-path": "^0.11.5",
"popper.js": "^1.16.1",
"react": "^17.0.1",
"react-bootstrap": "^1.5.0",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.2",
"react-scroll-to": "^3.0.0-beta.6",
"sass": "^1.32.8",
"yarn": "^1.22.10"
}
}