-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.82 KB
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
76
77
78
79
80
81
82
{
"name": "template-angular-universal",
"private": false,
"version": "0.0.2",
"author": "Gregory J Lopez",
"homepage": "https://iamgld.com",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:open": "ng serve --open",
"start:host": "ng serve --host 0.0.0.0",
"start:prod": "ng serve --configuration production",
"start:ssr": "ng run template-angular-universal:serve-ssr",
"start:ssr:node": "node dist/template-angular-universal/server/main.js",
"build": "yarn build:prod",
"build:dev": "ng build --optimization --configuration development --progress",
"build:stats": "ng build --optimization --configuration development --stats-json",
"build:prod": "ng build --optimization --configuration production --progress",
"build:ssr:dev": "yarn build:dev && ng run template-angular-universal:server",
"build:ssr:prod": "yarn build:prod && ng run template-angular-universal:server",
"build:ssr:prerender": "ng run template-angular-universal:prerender",
"test": "ng test",
"lint": "eslint src/app/",
"lint:fix": "eslint --fix src/app/",
"lint:ng": "ng lint",
"lint:ng:fix": "ng lint --fix",
"analyze": "webpack-bundle-analyzer dist/stats.json",
"postinstall": "husky install"
},
"dependencies": {
"@angular/animations": "14.2.8",
"@angular/common": "14.2.8",
"@angular/compiler": "14.2.8",
"@angular/core": "14.2.8",
"@angular/forms": "14.2.8",
"@angular/platform-browser": "14.2.8",
"@angular/platform-browser-dynamic": "14.2.8",
"@angular/platform-server": "14.2.8",
"@angular/router": "14.2.8",
"@ngrx/effects": "14.3.2",
"@ngrx/router-store": "14.3.2",
"@ngrx/schematics": "14.3.2",
"@ngrx/store": "14.3.2",
"@ngrx/store-devtools": "14.3.2",
"@nguniversal/express-engine": "14.2.3",
"express": "4.15.2",
"rxjs": "7.5.7",
"tslib": "2.4.1",
"zone.js": "0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.2.8",
"@angular-eslint/builder": "14.1.2",
"@angular-eslint/eslint-plugin": "14.1.2",
"@angular-eslint/eslint-plugin-template": "14.1.2",
"@angular-eslint/schematics": "14.1.2",
"@angular-eslint/template-parser": "14.1.2",
"@angular/cli": "14.2.8",
"@angular/compiler-cli": "14.2.8",
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@nguniversal/builders": "14.2.3",
"@types/express": "4.17.0",
"@types/jasmine": "4.3.0",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"jasmine-core": "4.5.0",
"karma": "6.4.1",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"prettier": "2.7.1",
"typescript": "4.8.4",
"webpack-bundle-analyzer": "4.7.0"
}
}