-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 934 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
36
37
{
"name": "your-first-pwapp",
"version": "2.0.0",
"description": "Codelab for Your First PWAPP",
"homepage": "https://codelabs.developers.google.com/codelabs/your-first-pwapp/",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"serve:lhci": "node server.js",
"lhci": "lhci autorun --upload.target=temporary-public-storage || echo \"LHCI failed!\""
},
"dependencies": {
"express": "^4.16.4",
"express-http-to-https": "^1.1.4",
"node-fetch": "^2.3.0"
},
"engines": {
"node": ">=8.x"
},
"repository": {
"type": "git",
"url": "https://github.com/googlecodelabs/your-first-pwapp.git"
},
"bugs": {
"url": "https://github.com/googlecodelabs/your-first-pwapp/issues"
},
"license": "Apache2",
"keywords": [
"progressive-web-app",
"pwa",
"installable web app"
],
"devDependencies": {
"dotenv": "^8.2.0",
"nodemon": "^1.19.4"
}
}