-
Notifications
You must be signed in to change notification settings - Fork 27.3k
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 867 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 867 Bytes
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
{
"name": "dev-app",
"private": true,
"scripts": {
"dev": "ibazel run //dev-app:build.serve",
"dev:prod": "ibazel run //dev-app:build.production.serve",
"dev:build": "bazel build //dev-app:build"
},
"dependencies": {
"@angular/common": "workspace:*",
"@angular/compiler": "workspace:*",
"@angular/core": "workspace:*",
"@angular/forms": "workspace:*",
"@angular/platform-browser": "workspace:*",
"@angular/platform-server": "workspace:*",
"@angular/localize": "workspace:*",
"@angular/router": "workspace:*",
"@angular/ssr": "22.0.0-rc.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "22.0.0-rc.1",
"@angular/cli": "22.0.0-rc.1",
"@angular/compiler-cli": "workspace:*",
"jsdom": "^29.0.0",
"typescript": "~6.0.2",
"vitest": "^4.0.0"
}
}