-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.47 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "saas-business-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"storybook": "ng run saas-business-app:storybook",
"build-storybook": "ng run saas-business-app:build-storybook",
"test-storybook": "ng run saas-business-app:build-storybook && test-storybook --url \"file:./dist/storybook/saas-business-app\"",
"prepare": "husky"
},
"private": true,
"type": "module",
"lint-staged": {
"*.{ts,html,scss,css,json,md}": [
"prettier --write"
],
"*.ts": [
"eslint --fix"
]
},
"packageManager": "npm@11.16.0",
"dependencies": {
"@angular/cdk": "^22.0.5",
"@angular/common": "^22.0.0",
"@angular/compiler": "^22.0.0",
"@angular/core": "^22.0.0",
"@angular/forms": "^22.0.0",
"@angular/platform-browser": "^22.0.0",
"@angular/router": "^22.0.0",
"@ngrx/signals": "^21.1.1",
"chart.js": "^4.5.1",
"msw": "^2.15.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^2.6.3",
"@angular-devkit/build-angular": "^22.0.7",
"@angular/animations": "^22.0.7",
"@angular/build": "^22.0.7",
"@angular/cli": "^22.0.7",
"@angular/compiler-cli": "^22.0.0",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.49.0",
"@storybook/addon-a11y": "^10.5.2",
"@storybook/addon-mcp": "^0.7.0",
"@storybook/addon-vitest": "^10.5.2",
"@storybook/angular-vite": "^10.5.2",
"@storybook/test-runner": "^0.24.4",
"@tailwindcss/postcss": "^4.3.3",
"angular-eslint": "^22.1.0",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-storybook": "10.5.2",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"lint-staged": "^17.0.8",
"postcss": "^8.5.19",
"prettier": "^3.8.1",
"storybook": "^10.5.2",
"tailwindcss": "^4.3.3",
"typescript": "~6.0.2",
"typescript-eslint": "^8.64.0",
"vitest": "^4.0.8",
"wait-on": "^9.0.10",
"zone.js": "^0.16.2"
},
"msw": {
"workerDirectory": [
"public"
]
}
}