-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
99 lines (99 loc) · 3.56 KB
/
package.json
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
{
"name": "linstor-gui",
"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,
"scripts": {
"prebuild": "npm run clean",
"build": "webpack --config webpack.prod.js",
"start:dev": "cross-env NODE_ENV=development webpack serve --config webpack.dev.js",
"eslint": "eslint --ext .tsx,.js ./src/",
"lint": "npm run eslint",
"format": "prettier --check --write ./src/**/*.{tsx,ts}",
"type-check": "tsc --noEmit",
"build:bundle-profile": "webpack --config webpack.prod.js --profile --json > stats.json",
"bundle-profile:analyze": "npm run build:bundle-profile && webpack-bundle-analyzer ./stats.json",
"clean": "rimraf dist",
"generate-api": "npm run generate-api:linstor && npm run generate-api:gateway",
"generate-api:linstor": "openapi-typescript ./src/app/apis/Linstor-Linstor-1.19.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"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/lodash.get": "^4.4.6",
"@types/lodash.uniqby": "^4.7.9",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"dotenv-webpack": "^8.1.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"openapi-typescript": "^6.2.6",
"postcss": "^8.4.47",
"prettier": "^3.2.5",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"react-router-dom": "^5.2.0",
"rimraf": "^5.0.7",
"style-loader": "^4.0.0",
"svg-url-loader": "^8.0.0",
"terser-webpack-plugin": "^5.1.3",
"ts-loader": "^9.2.3",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.4.5",
"url-loader": "^4.1.1",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@ant-design/icons": "^5.3.7",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@patternfly/react-core": "^4.128.2",
"@patternfly/react-icons": "^4.10.11",
"@patternfly/react-styles": "^4.10.11",
"@patternfly/react-table": "^4.29.0",
"@rematch/core": "^2.1.0",
"@rematch/loading": "^2.1.2",
"@tanstack/react-query": "^4.29.12",
"ahooks": "^3.7.11",
"antd": "^5.17.0",
"apexcharts": "^3.36.0",
"axios": "^1.6.8",
"bignumber.js": "^9.0.1",
"camelcase": "^8.0.0",
"crypto-js": "^4.1.1",
"dayjs": "^1.10.7",
"i18next": "^23.11.4",
"is-svg": "^4.3.2",
"lodash-es": "^4.17.21",
"lodash.get": "^4.4.2",
"lodash.uniqby": "^4.7.0",
"openapi-fetch": "^0.9.3",
"parse-prometheus-text-format": "^1.1.1",
"postcss-loader": "^8.1.1",
"react": "^18.3.1",
"react-apexcharts": "^1.4.0",
"react-dom": "^18.3.1",
"react-dropzone-uploader": "^2.11.0",
"react-hook-form": "^7.13.0",
"react-i18next": "^14.1.1",
"react-inlinesvg": "^4.1.3",
"react-redux": "^9.1.2",
"react-toastify": "^10.0.5"
}
}