-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.21 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.21 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
{
"name": "mtb-oa",
"private": true,
"version": "3.6.2",
"type": "module",
"packageManager": "pnpm@9.5.0",
"scripts": {
"dev": "vite --port 7271",
"build": "vite build",
"tsc": "tsc -b",
"preview": "vite preview --port 7371",
"lint:fix": "eslint --ext .vue,.js,.ts,.tsx ./src --max-warnings 0 --fix --cache",
"lint": "pnpm lint:tsc && eslint --ext .vue,.js,.ts,.tsx ./src --max-warnings 0 --cache",
"lint:tsc": "tsc --noEmit"
},
"dependencies": {
"@vue/runtime-dom": "^3.5.25",
"@vueuse/core": "^10.11.1",
"@wesley-0808/disable-devtool": "^0.5.0",
"@wesley-0808/rsa-verify": "^1.1.1",
"core-js": "^3.47.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.19",
"disable-devtool": "^0.3.9",
"echarts": "^5.6.0",
"exceljs": "^4.4.0",
"fake-progress": "^1.0.4",
"js-cookie": "^3.0.5",
"jsencrypt": "^3.5.4",
"md5.js": "^1.3.5",
"nprogress": "^0.2.0",
"rete": "^2.0.6",
"rete-area-plugin": "^2.1.5",
"rete-connection-plugin": "^2.0.5",
"rete-render-utils": "^2.0.3",
"rete-vue-plugin": "^2.1.2",
"sortablejs": "^1.15.6",
"tdesign-icons-vue-next": "^0.4.1",
"tdesign-vue-next": "^1.18.2",
"vue": "^3.5.25",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/lodash-es": "^4.17.12",
"@types/validator": "^13.15.10",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vitejs/plugin-vue": "^5.2.4",
"@vitejs/plugin-vue-jsx": "^4.2.0",
"@vue/compiler-sfc": "^3.5.25",
"@vue/runtime-core": "^3.5.25",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^4.2.5",
"eslint-plugin-vue": "^8.7.1",
"less-loader": "^11.1.4",
"lodash-es": "^4.17.21",
"prettier": "2.8.1",
"typescript": "~5.8.3",
"vite": "^5.4.21",
"vite-plugin-markdown": "^2.2.0",
"vue-tsc": "^2.2.12"
},
"lint-staged": {
"*.{vue,js,jsx,ts,tsx}": [
"prettier --write --cache",
"eslint --fix --cache"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}