-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 925 Bytes
/
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
{
"name": "boiler-plate",
"version": "1.0.0",
"description": "",
"main": "./server/index.js",
"scripts": {
"start": "node ./server/index.js",
"backend": "nodemon ./server/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"npm run backend\" \"npm run start --prefix client\""
},
"author": "LeeHY",
"license": "ISC",
"dependencies": {
"antd": "^4.23.6",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"concurrently": "^7.5.0",
"cookie-parser": "^1.4.6",
"create-react-app": "^5.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.4",
"react-redux": "^8.0.4",
"redux": "^4.2.0",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.4.1"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}