-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
99 lines (99 loc) · 2.96 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": "tiunimanager-ui",
"version": "1.0.3",
"private": true,
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
"dev:mock": "cross-env VITE_MOCK=1 vite",
"dev:wdyr": "cross-env VITE_WDYR=1 vite",
"dev:mock:wdyr": "cross-env VITE_MOCK=1 VITE_WDYR=1 vite",
"build": "tsc && vite build",
"release": "yarn build --mode release",
"serve": "vite preview",
"lint": "eslint . --cache",
"lint:ci": "eslint . --max-warnings 0",
"prepare": "is-ci || husky install",
"bootstrap": "yarn error:bootstrap",
"generate": "yarn api:gen && yarn error:gen",
"api:gen": "yarn openapi-generator-cli generate",
"error:bootstrap": "go install github.com/unbyte/error-code-gen@latest",
"error:gen": "error-code-gen -i external/error/input.csv -t external/error/template ./generated/error/index.ts"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@ant-design/pro-form": "^1.42.1",
"@ant-design/pro-table": "^2.54.4",
"@sentry/react": "^6.19.4",
"@sentry/tracing": "^6.19.4",
"ace-builds": "^1.4.12",
"antd": "^4.16.13",
"axios": "^0.21.1",
"copy-to-clipboard": "^3.3.1",
"cron-parser": "^3.5.0",
"dayjs": "^1.10.6",
"history": "^4",
"i18next": "^20.3.3",
"i18next-browser-languagedetector": "^6.1.2",
"nprogress": "^0.2.0",
"react": "^17.0.0",
"react-ace": "^9.4.3",
"react-dom": "^17.0.0",
"react-i18next": "^11.11.3",
"react-query": "^3.21.1",
"react-router-dom": "^5.2.0",
"zustand": "^3.5.10"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.3.7",
"@types/faker": "^5.5.7",
"@types/js-yaml": "^4.0.2",
"@types/node": "^16.3.3",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.0",
"@types/react-color": "^3.0.5",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"@vitejs/plugin-react-refresh": "^1.3.1",
"@welldone-software/why-did-you-render": "^6.2.1",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"faker": "^5.5.3",
"fast-glob": "^3.2.10",
"husky": "^7.0.1",
"is-ci": "^3.0.0",
"less": "^4.1.1",
"lint-staged": "^11.0.1",
"msw": "^0.32.0",
"prettier": "^2.3.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-yamlx": "^0.0.1",
"typescript": "^4.3.2",
"vite": "^2.9.13",
"vite-plugin-html": "^2.0.7",
"vite-plugin-imp": "^2.0.7",
"vite-plugin-macro": "^1.0.0-alpha.1"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix --max-warnings 0",
"prettier --write --ignore-unknown"
],
"*.+(json|css|md)": [
"prettier --write"
]
},
"msw": {
"workerDirectory": "public"
},
"eslintIgnore": [
"dist/*",
"generated/*"
],
"packageManager": "[email protected]"
}