-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 796 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "web-push-demo",
"version": "0.0.1",
"dependencies": {
"body-parser": "1.18.2",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"express": "4.16.3",
"express-jwt": "^5.3.1",
"express-static": "1.2.5",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"nodemon": "^1.18.11",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"web-push": "3.3.0"
},
"scripts": {
"start": "node server.js",
"dev": "cross-env MONGO_HOSTS=mongodb://localhost/test NODE_PORT=3002 SUBSCRIPTION_COLLECTION=subscription NOTIFICATION_COLLECTION=notification nodemon server.js",
"start:local": "cross-env MONGO_HOSTS=mongodb://localhost/test NODE_PORT=3002 SUBSCRIPTION_COLLECTION=subscription NOTIFICATION_COLLECTION=notification node server.js"
}
}