forked from angular/angularfire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.48 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
{
"name": "sample",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "cd ../.emulator && firebase emulators:exec --import seed \"cd ../modular && ng serve --hmr\"",
"build": "ng build --stats-json",
"build:prod": "ng build --configuration production --stats-json",
"analyze": "webpack-bundle-analyzer dist/sample/browser/stats.json",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"dev:ssr": "cd ../.emulator && firebase emulators:exec --import seed \"cd ../modular && ng run sample:serve-ssr\"",
"serve:ssr": "node dist/sample/server/main.js",
"build:ssr": "ng build && ng run sample:server",
"prerender": "ng run sample:prerender"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.0.1",
"@angular/common": "^13.0.1",
"@angular/compiler": "^13.0.1",
"@angular/core": "^13.0.1",
"@angular/fire": "../../dist/packages-dist",
"@angular/forms": "^13.0.1",
"@angular/platform-browser": "^13.0.1",
"@angular/platform-browser-dynamic": "^13.0.1",
"@angular/platform-server": "^13.0.1",
"@angular/router": "^13.0.1",
"@angular/service-worker": "^13.0.1",
"@nguniversal/express-engine": "^13.0.0",
"cross-fetch": "^3.1.4",
"express": "^4.15.2",
"firebase": "^9.4.0",
"lodash.isequal": "^4.5.0",
"rxfire": "^6.0.0",
"rxjs": "~6.6.0",
"tslib": "^2.1.0",
"webpack": "^5.35.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/architect": "~0.1300.2",
"@angular-devkit/build-angular": "^13.0.2",
"@angular/cli": "^13.0.2",
"@angular/compiler-cli": "^13.0.1",
"@nguniversal/builders": "^13.0.0",
"@types/express": "^4.17.0",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"file-loader": "^6.2.0",
"firebase-admin": "^9.11.1",
"firebase-functions": "^3.6.0",
"firebase-functions-test": "^0.2.2",
"firebase-tools": "^9.0.0",
"fuzzy": "^0.1.3",
"inquirer": "^6.2.2",
"inquirer-autocomplete-prompt": "^1.0.1",
"jasmine-core": "~3.7.0",
"jasmine-spec-reporter": "~7.0.0",
"jsonc-parser": "^3.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^13.0.3",
"open": "^7.0.3",
"ts-node": "~9.1.1",
"tslint": "~6.1.3",
"typescript": "~4.4.4",
"webpack-bundle-analyzer": "^4.4.1"
}
}