-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 3.33 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 3.33 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
64
65
66
67
68
69
70
71
{
"name": "krake-angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --open",
"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/krake-app/stats.json --filename dist/krake-app/analyse/index.html && http-server -o -c-1 ./dist/krake-app/analyse/",
"analyze:sme": "ng build --source-map --output-hashing=none --named-chunks && source-map-explorer dist/krake-app/browser/*.js --html dist/krake-app/sme/index.html && http-server -o -c-1 ./dist/krake-app/sme/",
"analyze:deps": "npm-run-all analyze:deps:*",
"analyze:deps:all": "madge projects/krake-app/src/main.ts --ts-config tsconfig.json --image ./deps/krake-app/_all.png",
"analyze:deps:ui": "madge --extensions ts --ts-config tsconfig.json --image ./deps/krake-app/ui.png projects/krake-app/src/app/ui/",
"analyze:deps:pattern": "madge --extensions ts --ts-config tsconfig.json --image ./deps/krake-app/pattern.png projects/krake-app/src/app/pattern/",
"analyze:deps:feature": "madge --extensions ts --ts-config tsconfig.json --image ./deps/krake-app/feature.png projects/krake-app/src/app/feature/",
"analyze:deps:layout": "madge --extensions ts --ts-config tsconfig.json --image ./deps/krake-app/layout.png projects/krake-app/src/app/layout/",
"analyze:deps:core": "madge --extensions ts --ts-config tsconfig.json --image ./deps/krake-app/core.png projects/krake-app/src/app/core/",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.1",
"@angular/cdk": "^18.0.1",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/material": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"chart.js": "^4.4.3",
"ng2-charts": "^6.0.1",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.2",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "^18.0.2",
"@angular/compiler-cli": "^18.0.1",
"@types/jasmine": "~5.1.4",
"@typescript-eslint/eslint-plugin": "7.10.0",
"@typescript-eslint/parser": "7.10.0",
"angular-cli-ghpages": "^2.0.0-beta.2",
"esbuild-visualizer": "^0.6.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-boundaries": "^4.2.1",
"http-server": "^14.1.1",
"jasmine-core": "~5.1.2",
"karma": "~6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"madge": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"source-map-explorer": "^2.5.3",
"typescript": "~5.4.5"
}
}