-
-
Notifications
You must be signed in to change notification settings - Fork 320
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.94 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
87
88
89
{
"name": "grimmory",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration production",
"dev": "ng serve --open --watch --configuration development",
"watch": "ng build --watch --configuration development",
"test": "ng test --watch=false",
"coverage": "ng test --watch=false --coverage",
"coverage:summary": "node ./scripts/coverage-summary.mjs",
"e2e": "playwright test",
"e2e:install": "playwright install chromium",
"typecheck": "tsc --noEmit -p tsconfig.app.json",
"lint": "pnpm run lint:eslint && pnpm run lint:styles",
"lint:eslint": "ng lint",
"lint:styles": "stylelint \"src/**/*.scss\" \"src/*.scss\"",
"lint:styles:fix": "pnpm run lint:styles --fix"
},
"private": true,
"dependencies": {
"@angular/aria": "^22.1.2",
"@angular/cdk": "^22.1.2",
"@angular/common": "^22.1.2",
"@angular/compiler": "^22.1.2",
"@angular/core": "^22.1.2",
"@angular/forms": "^22.1.2",
"@angular/platform-browser": "^22.1.2",
"@angular/router": "^22.1.2",
"@angular/service-worker": "^22.1.2",
"@embedpdf/pdfium": "2.15.0",
"@embedpdf/snippet": "2.15.0",
"@jsverse/transloco": "^8.4.0",
"@lucide/angular": "^1.31.0",
"@openng/icons": "^1.0.0",
"@openng/optimus-ui": "^2.0.1",
"@openng/optimus-ui-themes": "^2.0.1",
"@stomp/rx-stomp": "^2.4.0",
"@stomp/stompjs": "^7.3.0",
"@tanstack/angular-query-experimental": "5.102.8",
"@tanstack/angular-table": "9.1.0",
"@tanstack/angular-virtual": "^6.0.2",
"chart.js": "^4.5.1",
"chartjs-chart-matrix": "3.0.5",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.4.0",
"dompurify": "^3.4.13",
"lucide-static": "1.40.0",
"markdown-it": "^15.0.1",
"ng-lazyload-image": "^9.1.3",
"ng2-charts": "^10.0.0",
"ngx-infinite-scroll": "^22.0.0",
"ngx-sse-client": "^21.0.0",
"rxjs": "^7.8.2",
"tailwind-merge": "^3.6.0",
"tslib": "^2.8.1",
"uuid": "^14.0.2"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^2.6.4",
"@angular-devkit/architect": "^0.2201.4",
"@angular-devkit/schematics": "^22.1.4",
"@angular/build": "22.1.4",
"@angular/cli": "^22.1.4",
"@angular/compiler-cli": "^22.1.2",
"@eslint/js": "^10.0.1",
"@openng/optimus-ui-tailwindcss": "^2.0.1",
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/jest-dom": "^7.0.1",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.13.2",
"@vitest/coverage-v8": "^5.0.0",
"angular-eslint": "^22.1.0",
"eslint": "^10.9.1",
"jsdom": "^30.0.1",
"ng-mocks": "^14.17.0",
"postcss": "^8.5.26",
"stylelint": "^17.14.1",
"stylelint-config-standard-scss": "^17.0.0",
"tailwindcss": "^4.3.3",
"typescript": "~6.0.3",
"typescript-eslint": "^8.67.0",
"vitest": "^4.1.10",
"vitest-canvas-mock": "^1.1.4"
}
}