-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.41 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.41 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
{
"name": "isp-admin-ui",
"private": true,
"version": "0.27.7",
"type": "module",
"scripts": {
"start": "vite",
"build": "NODE_OPTIONS=--max-old-space-size=4096 vite build && node generateVersionFile.cjs",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"fix:prettier": "prettier --write \"src/**/*.{ts,tsx, js}\"",
"lint:fix": "eslint --fix .",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"prepare": "husky || true"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@reduxjs/toolkit": "^2.2.3",
"axios": "^1.7.7",
"dayjs": "^1.11.10",
"isp-admin-ui-kit": "1.9.10",
"isp-ui-kit": "1.2.2",
"monaco-editor": "^0.55.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.2",
"react-redux": "^9.1.0",
"react-resizable": "^3.0.5",
"react-router-dom": "^6.22.3",
"simplebar": "^6.2.5",
"simplebar-react": "^3.2.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/deep-equal": "^1.0.4",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^20.12.4",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@types/react-resizable": "^3.0.7",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitejs/plugin-legacy": "^5.3.2",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.6.0",
"antd": "5.25.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"sass": "1.74.1",
"terser": "^5.30.3",
"typescript": "^5.4.3",
"vite": "^5.4.10",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-node-polyfills": "^0.21.0",
"vite-plugin-style-import": "^2.0.0",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"husky": {
"hooks": {
"pre-commit": "eslint --fix .",
"pre-push": "eslint --fix ."
}
}
}