-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
43
44
45
46
47
48
49
{
"name": "webpush-server",
"version": "1.0.0",
"description": "Webpush Notification server",
"main": "index.js",
"scripts": {
"lint": "eslint src --ext .js --ext .jsx",
"start": "node -r dotenv/config src/server",
"generate-keys": "node_modules/web-push/src/cli.js generate-vapid-keys"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pmagaz/webpush-notification-server.git"
},
"keywords": [
"webpush",
"express",
"notification",
"nodejs",
"service-worker"
],
"husky": {
"hooks": {
"pre-push": "npm run lint",
"commit-msg": "echo $HUSKY_GIT_PARAMS"
}
},
"author": "Pablo Magaz",
"license": "MIT",
"bugs": {
"url": "https://github.com/pmagaz/webpush-notification-server/issues"
},
"homepage": "https://github.com/pmagaz/webpush-notification-server#readme",
"dependencies": {
"body-parser": "1.18.3",
"dotenv": "7.0.0",
"esm": "3.2.22",
"express": "4.16.4",
"husky": "1.3.1",
"nedb": "1.8.0",
"web-push": "3.3.3"
},
"devDependencies": {
"babel-eslint": "10.0.1",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.16.0"
}
}