forked from chingu-voyages/v12-bears-team-05
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
{
"name": "v12-bears-team-05",
"version": "0.1.0",
"private": true,
"dependencies": {
"@hapi/joi": "^16.1.7",
"@material-ui/core": "^4.5.0",
"@material-ui/icons": "^4.4.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connected-react-router": "^6.5.2",
"cookie-parser": "^1.4.4",
"cross-env": "^6.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-pino-logger": "^4.0.0",
"history": "^4.10.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-hook-form": "^3.24.1",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"react-router-redux": "^4.0.8",
"react-scripts": "3.2.0",
"react-swipeable-views": "^0.13.3",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-observable": "^1.2.0",
"rxjs": "^6.5.3"
},
"devDependencies": {
"concurrently": "^5.0.0",
"nodemon": "^1.19.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server:prod": "cross-env NODE_ENV=production node server",
"server:local": "cross-env NODE_ENV=development nodemon --watch ./server server",
"dev": "concurrently \"npm run server:local\" \"npm run start\""
},
"proxy": "http://localhost:3001",
"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"
]
}
}