-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "webpush-example",
"version": "1.0.0",
"description": "Example for client/server using web-push notifications",
"main": "server.js",
"scripts": {
"start": "node server/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint **/**.js",
"precommit": "pretty-quick --staged"
},
"dependencies": {
"@feathersjs/express": "^1.2.3",
"@feathersjs/feathers": "^3.1.7",
"feathers-memory": "^2.1.3",
"node-pushnotifications": "^1.1.3",
"winston": "^3.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"husky": "^0.14.3",
"prettier": "^1.13.5",
"pretty-quick": "^1.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-friedl/webpush-example.git"
},
"keywords": [
"webpush",
"nodejs",
"push-notifications"
],
"author": "Alexander Friedl",
"license": "MIT",
"bugs": {
"url": "https://github.com/alex-friedl/webpush-example/issues"
},
"homepage": "https://github.com/alex-friedl/webpush-example#readme"
}