-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.17 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "pwa-workshop-angular-firebase",
"version": "0.0.0",
"description": "Workshop: Build a production ready PWA with Angular and Firebase",
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --prod",
"server": "npx superstatic www --port 8080 --host 127.0.0.1",
"server:https": "node server/https.js localhost+2-key.pem localhost+2.pem",
"build:serve:https": "npm run build:prod",
"postbuild:serve:https": "npm run server:https",
"build:serve": "npm run build:prod",
"postbuild:serve": "npm run server",
"push": "node -r dotenv/config server/sendPush.js",
"lint": "ng lint",
"resources": "npx pwa-asset-generator ./src/assets/img/appicon.svg ./src/assets/pwa -b \"radial-gradient(circle farthest-corner at 1.3% 2.8%, rgba(239,249,249,1) 0%, rgba(182,199,226,1) 100%)\" -i ./src/index.html -m ./src/manifest.webmanifest"
},
"repository": {
"type": "git",
"url": "https://github.com/onderceylan/pwa-workshop-angular-firebase.git"
},
"private": true,
"dependencies": {
"@angular/common": "8.2.14",
"@angular/core": "8.2.14",
"@angular/forms": "8.2.14",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/pwa": "0.900.2",
"@angular/router": "8.2.14",
"@angular/service-worker": "8.2.14",
"@ionic/angular": "4.11.6",
"@ionic/storage": "2.1.3",
"core-js": "3.4.1",
"rxjs": "6.5.3",
"sw-toolbox": "3.6.0",
"tslib": "1.10.0",
"zone.js": "0.9.1"
},
"devDependencies": {
"@angular-devkit/architect": "0.803.23",
"@angular-devkit/build-angular": "0.803.23",
"@angular-devkit/core": "8.3.23",
"@angular-devkit/schematics": "8.3.23",
"@angular/cli": "8.3.23",
"@angular/compiler": "8.2.14",
"@angular/compiler-cli": "8.2.14",
"@angular/language-service": "8.2.14",
"@ionic/angular-toolkit": "2.1.2",
"@types/node": "12.0.0",
"codelyzer": "5.2.1",
"dotenv": "8.2.0",
"firebase-tools": "7.12.1",
"superstatic": "6.0.4",
"ts-node": "8.5.4",
"tslint": "^5.20.1",
"typescript": "3.5.3",
"web-push": "3.4.3"
}
}