-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.37 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.37 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
{
"name": "angular-render-scan-workspace",
"private": true,
"type": "module",
"scripts": {
"build": "npm run build:scan && npm run build:cli && npm run build:demo",
"build:scan": "ng-packagr -p packages/angular-render-scan/ng-package.json -c packages/angular-render-scan/tsconfig.lib.json && tsup --config packages/angular-render-scan/tsup.config.ts && cp packages/angular-render-scan/dist/auto.global.global.js packages/angular-render-scan/dist/auto.global.js",
"build:cli": "npm ci --prefix packages/cli && npm run build --prefix packages/cli",
"build:demo": "ng build angular-render-scan-demo",
"dev": "ng serve angular-render-scan-demo --host 127.0.0.1 --port 4200",
"test": "vitest run",
"test:e2e": "playwright test"
},
"dependencies": {
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "^0.16.0"
},
"devDependencies": {
"@angular/animations": "^22.0.0",
"@angular/build": "^22.0.0",
"@angular/cli": "^22.0.0",
"@angular/common": "^22.0.0",
"@angular/compiler": "^22.0.0",
"@angular/compiler-cli": "^22.0.0",
"@angular/core": "^22.0.0",
"@angular/forms": "^22.0.0",
"@angular/platform-browser": "^22.0.0",
"@angular/router": "^22.0.0",
"@playwright/test": "^1.57.0",
"jsdom": "^27.3.0",
"ng-packagr": "^22.0.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.0.15"
}
}