-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.81 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.81 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
{
"name": "rc-admin",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"dev": "ng serve",
"start": "npm run build && wrangler pages dev dist/cloudflare --compatibility-date=2024-10-04 --experimental-local",
"build": "ng build && npm run process",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:ci": "BROWSER_HEADLESS=true ng test --watch=false",
"serve:ssr:rc-admin": "node dist/rc-admin/server/server.mjs",
"process": "node ./tools/copy-files.mjs && node ./tools/alter-polyfills.mjs",
"deploy": "npm run build && wrangler pages deploy dist",
"e2e": "ng e2e",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.0.0",
"@angular/common": "^21.0.0",
"@angular/compiler": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/forms": "^21.0.0",
"@angular/platform-browser": "^21.0.0",
"@angular/platform-browser-dynamic": "^21.0.0",
"@angular/platform-server": "^21.0.0",
"@angular/router": "^21.0.0",
"@angular/ssr": "^21.0.3",
"@ngrx/signals": "^20.0.0",
"ngx-toastr": "^19.1.0",
"rxjs": "~7.8.2",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^21.0.3",
"@angular/cli": "^21.0.3",
"@angular/compiler-cli": "^21.0.0",
"@biomejs/biome": "2.3.7",
"@cloudflare/workers-types": "^4.20241004.0",
"@cypress/schematic": "4.1.1",
"@miniflare/tre": "^3.0.0-next.13",
"@types/node": "^24.10.1",
"@vitest/browser": "^4.0.13",
"@vitest/browser-playwright": "^4.0.13",
"cypress": "latest",
"esbuild": "^0.27.0",
"jsdom": "^27.2.0",
"playwright": "^1.56.1",
"tailwindcss": "^3.4.13",
"typescript": "~5.9.3",
"vitest": "^4.0.13",
"wrangler": "^4.50.0"
}
}