-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
executable file
·75 lines (75 loc) · 2.32 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "onsnapshot",
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/angular/universal-starter.git"
},
"contributors": [
"AngularClass <[email protected]>",
"PatrickJS <[email protected]>",
"Jeff Whelpley <[email protected]>",
"Jeff Cross <[email protected]>",
"Mark Pieszak <[email protected]>",
"Jason Jean <[email protected]>",
"Fabian Wiles <[email protected]>"
],
"scripts": {
"ng": "ng",
"serve": "ng serve",
"ssr": "npm run build:all && npm run serve:ssr",
"build:prod": "ng build --aot --prod",
"build:ssr": "ng run onsnapshot:server && (tsc server.ts | true)",
"build:all": "npm run build:prod && npm run build:ssr",
"serve:ssr": "node ./server.js"
},
"private": true,
"dependencies": {
"@angular/animations": "^8.0.0",
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/core": "^8.0.0",
"@angular/fire": "^5.2.0-rc.3",
"@angular/forms": "^8.0.0",
"@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@angular/platform-server": "^8.0.0",
"@angular/pwa": "^0.12.4",
"@angular/router": "^8.0.0",
"@angular/service-worker": "^8.0.0",
"@google-cloud/trace-agent": "^3.6.0",
"@nguniversal/express-engine": "^7.0.0",
"@nguniversal/module-map-ngfactory-loader": "^7.0.0",
"bufferutil": "^3.0.3",
"core-js": "^2.4.1",
"firebase": "^6.0.4",
"rxjs": "^6.5.2",
"utf-8-validate": "^4.0.0",
"ws": "^3.2.0",
"xmlhttprequest": "^1.8.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/architect": "~0.800.0",
"@angular-devkit/build-angular": "~0.800.0",
"@angular/cli": "^8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@angular/language-service": "^8.0.0",
"@types/node": "^8.0.30",
"codelyzer": "^5.0.1",
"cpy-cli": "^1.0.1",
"firebase-tools": "^6.10.0",
"first-input-delay": "^0.1.3",
"fuzzy": "^0.1.3",
"http-server": "^0.10.0",
"inquirer": "^6.2.2",
"inquirer-autocomplete-prompt": "^1.0.1",
"reflect-metadata": "^0.1.10",
"sw-precache-webpack-plugin": "^0.11.4",
"ts-loader": "^4.5.0",
"typescript": "3.4.5",
"uglifyjs-webpack-plugin": "^1.1.8",
"webpack-cli": "^3.1.2"
}
}