-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "bulletin-board",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "run-p start:* ",
"start-silent": "run-p start > /dev/null",
"start:react": "react-scripts start",
"start-and-test": "run-p start-silent test ",
"build": "react-scripts build",
"test": "react-scripts test --noStackTrace",
"test-all": "react-scripts test --watchAll=false --noStackTrace",
"test-related": "react-scripts test --watchAll=false --noStackTrace --findRelatedTests",
"eject": "react-scripts eject",
"serv": "npx nodemon backend/server.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"yarn test-related --",
"eslint"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^4.12.1",
"@material-ui/icons": "^4.11.2",
"@mui/icons-material": "^5.0.0",
"@mui/material": "^5.0.0",
"axios": "^0.21.1",
"clsx": "^1.0.4",
"cors": "2.8.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"express": "4.17.1",
"express-session": "1.17.0",
"mongodb": "3.3.2",
"mongoose": "5.7.1",
"node-sass": "4.14.1",
"nodemon": "1.19.1",
"npm-run-all": "^4.1.5",
"passport": "0.4.0",
"passport-google-oauth20": "2.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-test-renderer": "^17.0.2",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"shortid": "^2.2.16"
},
"devDependencies": {
"husky": "4.2",
"lint-staged": "^11.0.0",
"redux-devtools-extension": "^2.13.9"
}
}