-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.6 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.6 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
57
58
59
60
61
62
63
{
"name": "angular-architecture-example",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve example-app --host 0.0.0.0 --port 4200",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"format:test": "prettier --list-different \"./projects/**/*.{ts,html,scss,json}\"",
"format:write": "prettier --write \"./projects/**/*.{ts,html,scss,json}\"",
"analyze": "ng build --stats-json --output-hashing none --named-chunks && esbuild-visualizer --template treemap --metadata dist/example-app/stats.json --filename dist/example-app/analyse/index.html && http-server -o -c-1 ./dist/example-app/analyse/",
"analyze:sme": "ng build --source-map --output-hashing none --named-chunks && source-map-explorer dist/example-app/browser/*.js --html dist/example-app/sme/index.html && http-server -o -c-1 ./dist/example-app/sme/",
"analyze:deps": "npm-run-all analyze:deps:*",
"analyze:deps:all": "madge projects/example-app/src/main.ts --ts-config projects/example-app/tsconfig.app.json --image ./deps/example-app/_all.jpg",
"analyze:deps:ui": "madge --extensions ts --ts-config projects/example-app/tsconfig.app.json --image ./deps/example-app/ui.png projects/example-app/src/app/ui/",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.0.2",
"@angular/cdk": "^20.0.2",
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/forms": "^20.0.0",
"@angular/material": "^20.0.2",
"@angular/material-date-fns-adapter": "20.0.2",
"@angular/platform-browser": "^20.0.0",
"@angular/router": "^20.0.0",
"@tailwindcss/postcss": "^4.1.8",
"date-fns": "^4.1.0",
"postcss": "^8.5.4",
"rxjs": "~7.8.0",
"tailwindcss": "^4.1.8",
"tslib": "^2.3.0",
"zod": "^3.25.51"
},
"devDependencies": {
"@angular-eslint/builder": "20.0.0",
"@angular/build": "^20.0.1",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/platform-browser-dynamic": "^20.0.0",
"@eslint/js": "^9.28.0",
"@types/node": "^24.0.7",
"@vitest/ui": "^3.1.4",
"angular-eslint": "20.0.0",
"esbuild-visualizer": "^0.7.0",
"eslint": "^9.28.0",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-boundaries": "^5.0.1",
"http-server": "^14.1.1",
"jsdom": "^26.1.0",
"madge": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"source-map-explorer": "^2.5.3",
"typescript": "~5.8.2",
"typescript-eslint": "8.33.1",
"vitest": "^3.2.3"
}
}