-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 972 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 972 Bytes
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
{
"name": "server",
"version": "1.0.0",
"engines": {
"node": "16.15.1"
},
"description": "",
"main": "index.js",
"scripts": {
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"develop": "nodemon server.js",
"start": "node server.js"
},
"proxy": "http://localhost:8000",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.15"
},
"dependencies": {
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"concurrently": "^6.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"express-validator": "^6.13.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.14",
"mongoose-unique-validator": "^3.0.0",
"morgan": "^1.10.0",
"path": "^0.12.7",
"uuid": "^8.3.2"
}
}