-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.43 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.43 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
{
"name": "linkis-web-next",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@fesjs/fes-design": "^0.7.31",
"@types/lodash": "^4.14.198",
"@vitejs/plugin-vue": "^5.2.1",
"axios": "^1.12.0",
"dayjs": "^1.11.10",
"dexie": "^3.2.7",
"md5": "^2.3.0",
"monaco-editor": "^0.43.0",
"qs": "^6.14.1",
"vite": "^6.4.1",
"vue": "^3.2.47",
"vue-i18n": "^9.14.5",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.1",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-vue": "^9.14.1",
"husky": "^7.0.0",
"jsencrypt": "^3.3.2",
"less": "^4.2.0",
"lint-staged": "^13.3.0",
"prettier": "2.8.8",
"typescript": "^5.0.2",
"vue-eslint-parser": "^9.3.0"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{scss,less,css,html,md,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged",
"commit-msg": "commitlint -E $HUSKY_GIT_PARAMS"
}
}
}