-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.72 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
{
"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",
"build:serve": "npm run build:prod",
"postbuild:serve": "npm run server",
"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 -e false"
},
"repository": {
"type": "git",
"url": "https://github.com/onderceylan/pwa-workshop-angular-firebase.git"
},
"private": true,
"dependencies": {
"@angular/common": "10.1.2",
"@angular/core": "10.1.2",
"@angular/forms": "10.1.2",
"@angular/platform-browser": "10.1.2",
"@angular/platform-browser-dynamic": "10.1.2",
"@angular/router": "10.1.2",
"@ionic/angular": "5.3.3",
"@ionic/storage": "2.3.1",
"core-js": "3.4.1",
"rxjs": "6.5.5",
"tslib": "2.0.0",
"zone.js": "0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1001.2",
"@angular/cli": "10.1.2",
"@angular/compiler": "10.1.2",
"@angular/compiler-cli": "10.1.2",
"@angular/language-service": "10.1.2",
"@ionic/angular-toolkit": "2.3.3",
"@types/node": "12.11.1",
"codelyzer": "6.0.0",
"firebase-tools": "8.10.0",
"pwa-asset-generator": "3.2.2",
"superstatic": "7.0.0",
"ts-node": "8.5.4",
"tslint": "6.1.3",
"typescript": "3.9.5"
}
}