-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 782 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 782 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
{
"name": "notify.uno",
"version": "1.0.0",
"description": "Get notified when your command is done",
"main": "app.js",
"repository": "https://github.com/Simolation/notify.uno.git",
"author": "Simon Osterlehner <simon@osterlehner.de>",
"license": "MIT",
"private": false,
"dependencies": {
"compression": "^1.7.4",
"cookie-session": "^1.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.11.17",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"socket.io": "^2.4.1",
"web-push": "^3.4.4"
},
"scripts": {
"dev": "nodemon app.js",
"start": "PORT=3005 pm2 start app.js --name 'notify.uno' -i max",
"restart": "pm2 reload 'notify.uno'"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}