-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.49 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
{
"name": "angular-universal-ssr_host-app",
"version": "0.0.0",
"type": "commonjs",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"dev:ssr": "ng run host-app:serve-ssr",
"serve:ssr": "node dist/host-app/server/main.js",
"build:ssr": "ng build --configuration production && ng run host-app:server:production",
"build:federation": "webpack",
"serve:federation": "node dist/server/main.js",
"clean": "rm -rf dist"
},
"dependencies": {
"@angular/animations": "^15.2.10",
"@angular/common": "^15.2.10",
"@angular/compiler": "^15.2.10",
"@angular/core": "^15.2.10",
"@angular/forms": "^15.2.10",
"@angular/platform-browser": "^15.2.10",
"@angular/platform-browser-dynamic": "^15.2.10",
"@angular/platform-server": "^15.2.10",
"@angular/router": "^15.2.10",
"@nguniversal/express-engine": "^15.2.1",
"express": "^4.22.1",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "15.2.10",
"@angular/cli": "15.2.10",
"@angular/compiler-cli": "15.2.10",
"@ngtools/webpack": "15.2.11",
"@nguniversal/builders": "16.2.0",
"clean-webpack-plugin": "4.0.0",
"html-webpack-plugin": "5.6.0",
"raw-loader": "4.0.2",
"sass-loader": "14.2.1",
"ts-node": "10.9.2",
"tslint": "6.1.3",
"typescript": "5.5.3",
"webpack": "5.105.3",
"webpack-cli": "5.1.4"
}
}