forked from hackforla/VRMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 963 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
33
34
35
36
37
38
39
40
{
"name": "vrms-server",
"version": "0.3.0",
"description": "VRMS Server",
"main": "server.js",
"scripts": {
"test": "mocha",
"start": "node server.js",
"dev": "nodemon server.js",
"client": "npm run start --prefix client",
"dev-start": "concurrently \"npm run dev\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"author": "sarL3y",
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"concurrently": "^5.1.0",
"debug": "^4.1.1",
"mocha": "^6.2.3",
"supertest": "^4.0.2"
},
"dependencies": {
"async": "^3.2.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"googleapis": "^39.2.0",
"helmet": "^3.22.0",
"mongoose": "^5.9.7",
"morgan": "^1.10.0",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.2"
},
"directories": {
"test": "test"
}
}