-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.43 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
{
"name": "lico-portal",
"version": "7.2.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --no-fix",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix",
"format": "prettier --write . --ignore-path ./.eslintignore",
"postinstall": "node ./config/setup.js"
},
"dependencies": {
"@ant-design/icons-vue": "6.1.x",
"@wangeditor/editor-for-vue": "^5.1.12",
"ant-design-vue": "4.0.x",
"axios": "1.4.x",
"core-js": "3.8.x",
"cropperjs": "1.6.x",
"dayjs": "1.11.x",
"echarts": "5.4.x",
"js-base64": "3.7.x",
"jwt-decode": "3.1.x",
"uuid": "9.0.x",
"vue": "3.3.x",
"vue-i18n": "9.2.x",
"vue-router": "4.2.x",
"vuex": "4.1.x"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.2",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^8.0.0",
"eslint": "^8.45.0",
"eslint-plugin-vue": "^9.15.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"rollup-plugin-visualizer": "^5.9.2",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.4.6",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-top-level-await": "^1.3.1",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"npm run format",
"npm run lint:fix"
]
}
}