-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.61 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
{
"name": "lowcode-form",
"version": "0.0.1",
"license": "MIT",
"author": "Hayes Lv<417703682@qq.com>(https://github.com/hayeslv/)",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog-zh"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"lint": "eslint .",
"commit": "git add . && git cz",
"prepare": "npx husky install"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.1",
"element-plus": "^2.2.2",
"file-saver": "^2.0.5",
"lodash": "^4.17.21",
"mitt": "^3.0.0",
"nprogress": "^0.2.0",
"vue": "^3.2.25",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@hayeslv/eslint-config": "0.1.6",
"@types/node": "^17.0.21",
"@types/nprogress": "^0.2.0",
"@vitejs/plugin-vue": "^2.2.0",
"@vitejs/plugin-vue-jsx": "^1.3.8",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog-zh": "^0.0.2",
"eslint": "^8.11.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"sass": "^1.49.9",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-plugin-svg-icons": "^2.0.1",
"vue-tsc": "^0.29.8"
},
"eslintConfig": {
"extends": [
"@hayeslv"
],
"ignorePatterns": [
"auto-imports.d.ts",
"autobuild"
],
"rules": {
"@typescript-eslint/no-use-before-define": "off",
"no-multi-spaces": "off",
"@typescript-eslint/brace-style": "off",
"vue/no-setup-props-destructure": "off"
}
}
}