-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 726 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 726 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
30
31
32
{
"name": "service-worker-web-push-example",
"version": "0.1.0",
"author": {
"name": "Pirmin Rehm",
"url": "https://github.com/pirminrehm/"
},
"license": "MIT",
"repository": {
"url": "https://github.com/pirminrehm/service-worker-web-push-example.git"
},
"private": true,
"scripts": {
"start": "node server/server.mjs",
"serve": "http-server -c-1 client"
},
"dependencies": {
"fastify": "^3.21.6",
"fastify-cors": "^6.0.2",
"http-server": "^13.0.2",
"web-push": "^3.4.5"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1"
},
"engines": {
"node": "^16.0.0"
}
}