-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.93 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.93 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "hashtopolis",
"version": "0.0.0",
"engines": {
"node": "24.12.0",
"npm": "^11.6.2"
},
"scripts": {
"ng": "ng",
"start": "node git-version.js && ng serve --host 0.0.0.0 --poll 500 && node git-version.js",
"build": "node git-version.js && ng build --configuration production",
"watch": "ng build --watch --configuration development",
"test": "ng test --karma-config=karma.conf.js --include=src/app --code-coverage",
"test:ci": "ng test --watch=false --browsers=ChromeHeadless",
"build:ci": "ng build --configuration production",
"format": "npx prettier 'src/**/*.{js,jsx,ts,tsx,html,css,scss}' --write",
"lint": "ng lint",
"check-types": "NODE_OPTIONS=--max-old-space-size=8192 tsc --noEmit",
"clean": "rm -rf package-lock.json npm-shrinkwrap.json node_modules;npm cache clean --force;npm cache verify",
"fetch:openapi": "curl -s -o openapi.json http://localhost:8080/api/v2/openapi-compliant.json && npx prettier --write openapi.json",
"generate:api": "openapi-ts -f openapi-ts.config.mjs && node scripts/split-generated.mjs && npx prettier --write 'src/generated/api/**/*.ts'",
"generate": "npm run fetch:openapi && npm run generate:api",
"lint:openapi": "redocly lint openapi.json && spectral lint -D openapi.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.18",
"@angular/cdk": "^20.2.10",
"@angular/common": "^20.3.18",
"@angular/compiler": "^20.3.18",
"@angular/core": "^20.3.18",
"@angular/forms": "^20.3.18",
"@angular/localize": "^20.3.18",
"@angular/material": "^20.2.10",
"@angular/platform-browser": "^20.3.18",
"@angular/platform-browser-dynamic": "^20.3.18",
"@angular/router": "^20.3.18",
"@fortawesome/angular-fontawesome": "^2.0.1",
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-regular-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@ng-idle/core": "^13.0.0",
"@ng-idle/keepalive": "^13.0.0",
"@ngrx/store": "^20.1.0",
"@tailwindcss/postcss": "^4.2.1",
"@types/echarts": "^4.9.18",
"echarts": "^5.4.2",
"exceljs": "^4.4.0",
"hashtype-detector": "^0.0.6",
"jsona": "^1.12.1",
"jspdf": "^4.2.1",
"jszip": "^3.10.1",
"moment": "^2.29.4",
"ngx-moment": "^6.0.2",
"opentracing": "^0.14.7",
"papaparse": "^5.4.1",
"pdfmake": "^0.3.5",
"rxjs": "~7.8.1",
"tailwindcss": "^4.2.1",
"tslib": "^2.6.0",
"tus-js-client": "^3.1.1",
"wordpolis": "^0.0.3",
"zod": "^4.3.6",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-eslint/builder": "^20.7.0",
"@angular-eslint/eslint-plugin": "^21.2.0",
"@angular-eslint/eslint-plugin-template": "21.2.0",
"@angular-eslint/schematics": "^20.7.0",
"@angular-eslint/template-parser": "^21.2.0",
"@angular/build": "^20.3.21",
"@angular/cli": "^20.3.18",
"@angular/compiler-cli": "^20.3.18",
"@eslint/compat": "^2.0.2",
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.3",
"@hey-api/openapi-ts": "^0.94.2",
"@redocly/cli": "^2.24.0",
"@stoplight/spectral-cli": "^6.15.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/jasmine": "~4.3.5",
"@types/node": "^20.5.0",
"@types/papaparse": "^5.3.16",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@typescript-eslint/utils": "^8.56.1",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "5.2.6",
"jasmine-core": "~5.0.1",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"karma-spec-reporter": "^0.0.36",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"puppeteer": "^24.6.1",
"typescript": "^5.9.3"
}
}