-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 2.13 KB
/
package.json
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": "ngfe",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"playground:serve": "ng run playground:serve",
"playground:build": "ng run playground:build:production",
"playground:stats": "npx webpack-bundle-analyzer dist/playground/stats.json",
"playground-adapter:serve": "ng run playground-adapter:serve",
"playground-adapter:build": "ng run playground-adapter:build:production",
"playground-adapter:stats": "npx webpack-bundle-analyzer dist/playground-adapter/stats.json",
"playground-performance:serve": "ng run playground-performance:serve",
"ngfe:build": "ng run ngfe:build:production && cpx ./README.md ./dist/ngfe",
"ngfe:publish": "npm publish ./dist/ngfe --access=public",
"ngfe:publish:beta": "npm publish ./dist/ngfe --access=public --tag=beta",
"ngfe-ng-adapter:build": "ng run ngfe-ng-adapter:build:production && cpx ./README.md ./dist/ngfe-ng-adapter",
"ngfe-ng-adapter:publish": "npm publish ./dist/ngfe-ng-adapter --access=public",
"ngfe-ng-adapter:publish:beta": "npm publish ./dist/ngfe-ng-adapter --access=public --tag=beta",
"e2e": "start-server-and-test playground:serve http://localhost:4200 e2e-test",
"e2e-test": "playwright test -c e2e/playwright.config.ts",
"e2e-test:chromium": "npm run e2e-test -- --project=chromium"
},
"private": true,
"dependencies": {
"@angular/animations": "~15.0.0",
"@angular/cdk": "^15.0.0",
"@angular/common": "~15.0.0",
"@angular/compiler": "~15.0.0",
"@angular/core": "~15.0.0",
"@angular/forms": "~15.0.0",
"@angular/material": "^15.0.0",
"@angular/platform-browser": "~15.0.0",
"@angular/platform-browser-dynamic": "~15.0.0",
"@angular/router": "~15.0.0",
"rxjs": "~7.5.7",
"tslib": "^2.4.1",
"zone.js": "~0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.0",
"@angular/cli": "~15.0.0",
"@angular/compiler-cli": "~15.0.0",
"@playwright/test": "^1.28.0",
"@types/node": "^18.11.9",
"cpx": "^1.5.0",
"ng-packagr": "^15.0.0",
"start-server-and-test": "^1.14.0",
"typescript": "~4.8.4",
"webpack-bundle-analyzer": "^4.7.0"
}
}