-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
31 lines (31 loc) · 1.13 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
{
"name": "pwa-m2",
"version": "1.0.0",
"description": "The repo to learn about PWAs",
"main": "index.js",
"scripts": {
"00-basic-example": "nodemon 00-basic-example/server.js",
"01-lifecycles": "nodemon 01-lifecycles/server.js",
"02-updates": "nodemon 02-updates/server.js",
"03-communication": "nodemon 03-communication/server.js",
"04-offline-page": "nodemon 04-offline-page/server.js",
"05-dynamic-caching": "nodemon 05-dynamic-caching/server.js",
"06-workbox": "nodemon 06-workbox/server.js",
"07-strategies": "nodemon 07-strategies/server.js",
"08-caches-expiration": "nodemon 08-caches-expiration/server.js",
"09-update-notification": "nodemon 09-update-notification/server.js",
"10-background-sync": "nodemon 10-background-sync/server.js",
"11-sync-notifications": "nodemon 11-sync-notifications/server.js",
"12-custom-response": "nodemon 12-custom-response/server.js"
},
"author": "Clément Ollivier",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1"
},
"devDependencies": {
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
}
}