-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 930 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
{
"name": "livenotif-server",
"version": "4.0.0",
"description": "V4 backend server for LiveNotif addons",
"main": "build/app.js",
"scripts": {
"build": "tsc .",
"lint": "tslint .",
"start": "node -r dotenv/config build/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siffreinsg/livenotif-api.git"
},
"author": "Siffrein Sigy <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/siffreinsg/livenotif-api/issues"
},
"homepage": "https://github.com/siffreinsg/livenotif-api#readme",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/node": "^12.12.7",
"@types/web-push": "^3.3.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"web-push": "^3.4.1"
}
}