-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 863 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
{
"name": "socketio_dashboard",
"version": "1.0.0",
"main": "index.js",
"author": "Victor Hugo Negrisoli",
"license": "MIT",
"scripts": {
"startLocal": "set NODE_ENV=dev&& nodemon src/app.js",
"startLocalLinux": "export NODE_ENV=dev&& nodemon src/app.js",
"startContainer": "nodemon src/app.js",
"start": "set NODE_ENV=prod&& sucrase-node src/app.js",
"heroku-prebuild": "rm -rf node_modules && rm -rf yarn.lock && yarn"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-handlebars": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.0",
"nodemon": "^2.0.3",
"socket.io": "^2.3.0",
"sucrase": "^3.13.0"
},
"devDependencies": {
"handlebars": "^4.7.6",
"nodemon": "^2.0.3",
"sucrase": "^3.13.0"
}
}