This repository was archived by the owner on Apr 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.41 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.41 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
{
"name": "jetski",
"version": "0.4.4",
"type": "module",
"scripts": {
"ng": "ng",
"start": "ng serve",
"buildconfig": "node hack/update-frontend-version.js",
"sentry-upload": "hack/sentry-release.sh",
"prestart": "npm run buildconfig",
"prebuild": "npm run buildconfig",
"build": "ng build",
"build:prod": "npm run build -- --configuration=production",
"build:dev": "npm run build -- --configuration=development",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"format": "ng lint --fix"
},
"prettier": {
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"dependencies": {
"@angular/cdk": "^20.0.5",
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/forms": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/router": "^20.0.0",
"@modelcontextprotocol/sdk": "^1.18.0",
"@ng-icons/core": "^32.0.0",
"@ng-icons/lucide": "^32.0.0",
"@sentry/angular": "^10.0.0",
"@spartan-ng/brain": "^0.0.1-alpha.486",
"@tailwindcss/postcss": "^4.1.11",
"@tanstack/angular-table": "^8.21.3",
"angular-oauth2-oidc": "^20.0.2",
"chart.js": "^4.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"highlight.js": "^11.11.1",
"ng2-charts": "^8.0.0",
"ngx-sonner": ">=3.0.0",
"postcss": "^8.5.6",
"posthog-js": "^1.257.0",
"rxjs": "~7.8.0",
"tailwind-merge": "^3.0.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^20.0.5",
"@angular/cli": "^20.0.5",
"@angular/compiler-cli": "^20.0.0",
"@eslint/js": "^9.31.0",
"@sentry/cli": "^2.56.1",
"@spartan-ng/cli": "^0.0.1-alpha.486",
"@types/jasmine": "~5.1.0",
"angular-eslint": "20.5.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"jasmine-core": "~5.12.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.1.0",
"tailwindcss": "^4.1.11",
"tailwindcss-animate": "^1.0.6",
"typescript": "~5.8.2",
"typescript-eslint": "8.46.3"
}
}