-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name": "my-angular-app",
"version": "0.0.1",
"homepage": "https://github.com/kristiyan-velkov/docker-angular-sample",
"author": {
"name": "Kristiyan Velkov",
"url": "https://www.linkedin.com/in/kristiyan-velkov-763130b3/"
},
"bugs": {
"url": "https://github.com/kristiyan-velkov/docker-angular-sample/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/kristiyan-velkov"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"serve:ssr:my-angular-app": "node dist/my-angular-app/server/server.mjs"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.2.4",
"@angular/common": "^20.2.4",
"@angular/compiler": "^20.2.4",
"@angular/core": "^20.2.4",
"@angular/forms": "^20.2.4",
"@angular/platform-browser": "^20.2.4",
"@angular/platform-browser-dynamic": "^20.2.4",
"@angular/platform-server": "^20.2.4",
"@angular/router": "^20.2.4",
"@angular/ssr": "^20.2.2",
"express": "^5.1.0",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-builders/jest": "^20.0.0",
"@angular/cli": "^20.2.2",
"@angular/compiler-cli": "^20.2.4",
"@types/express": "^5.0.3",
"@types/jasmine": "~5.1.9",
"@types/node": "^24.3.1",
"jasmine-core": "~5.10.0",
"typescript": "~5.9.2"
}
}