-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "virtulogics",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore client/\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chart.js": "^2.9.1",
"concurrently": "^5.0.0",
"config": "^3.1.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-validator": "^5.3.1",
"gravatar": "^1.8.0",
"influx": "^5.4.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.7.4",
"path": "^0.12.7",
"react-chartjs-2": "^2.8.0",
"react-circular-progressbar": "^2.0.3",
"react-moment": "^0.9.6",
"request": "^2.88.0"
},
"devDependencies": {
"concurrently": "^5.0.0",
"nodemon": "^1.18.11"
}
}