forked from LINBIT/linstor-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.05 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.05 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
{
"name": "linstor-gui",
"version": "1.9.10",
"description": "Administration GUI for LINSTOR clusters.",
"repository": "https://github.com/LINBIT/linstor-gui",
"homepage": "https://linbit.com/linbit-gui/",
"license": "GPL-3.0-or-later",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"start:dev": "vite",
"prebuild": "npm run clean",
"build": "vite build",
"eslint": "eslint --ext .tsx,.js ./src/",
"lint": "npm run eslint",
"format": "prettier --write --list-different './src/**/*.{ts,tsx,js,jsx,css}' '!src/app/apis/**'",
"type-check": "tsc --noEmit",
"clean": "rimraf dist",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage --run",
"generate-api": "npm run generate-api:linstor && npm run generate-api:gateway",
"generate-api:linstor": "openapi-typescript ./src/app/apis/Linstor-Linstor-1.25.0-resolved.yaml --output ./src/app/apis/schema.ts",
"generate-api:gateway": "openapi-typescript ./src/app/apis/Linstor-linstor-gateway-2.0.0-resolved.yaml --output ./src/app/apis/gatewayschema.ts",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/crypto-js": "^4.1.1",
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.10",
"@types/react-dom": "^19.1.7",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.22.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"openapi-typescript": "^7.6.1",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"terser": "^5.39.0",
"tslib": "^2.8.1",
"typescript": "^5.4.5",
"typescript-eslint": "^8.26.1",
"vite": "^6.2.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"dependencies": {
"@ant-design/icons": "^5.3.7",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@rematch/core": "^2.1.0",
"@rematch/loading": "^2.1.2",
"@tailwindcss/vite": "^4.0.11",
"@tanstack/react-query": "^4.29.12",
"antd": "^5.24.3",
"apexcharts": "^4.2.0",
"axios": "^1.8.3",
"bignumber.js": "^9.0.1",
"camelcase": "^8.0.0",
"cron-parser": "^5.1.0",
"crypto-js": "^4.1.1",
"dayjs": "^1.10.7",
"i18next": "^24.2.2",
"is-svg": "^5.1.0",
"lodash": "^4.17.21",
"openapi-fetch": "^0.9.3",
"parse-prometheus-text-format": "^1.1.1",
"react": "^18.3.1",
"react-apexcharts": "^1.7.0",
"react-dom": "^18.3.1",
"react-i18next": "^15.4.1",
"react-icons": "^5.5.0",
"react-inlinesvg": "^4.1.3",
"react-js-cron": "^5.0.1",
"react-redux": "^9.1.2",
"react-router-dom": "^7.3.0"
}
}