-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.87 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
{
"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"
},
"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.7.1",
"@emotion/styled": "^11.6.0",
"@material-ui/core": "^4.7.0",
"@material-ui/icons": "^4.5.1",
"@mui/icons-material": "^5.4.1",
"@mui/material": "^5.4.1",
"@mui/styles": "^5.4.1",
"@types/react": "^17.0.39",
"axios": "^0.19.0",
"clsx": "^1.1.1",
"cors": "^2.8.5",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"express": "^4.17.3",
"jsx": "react-jsx",
"mongodb": "^4.3.1",
"mongoose": "^6.2.2",
"node-sass": "4.14.1",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-test-renderer": "^16.12.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"husky": "^3.1.0",
"lint-staged": "^9.4.3",
"redux-devtools-extension": "^2.13.8"
}
}