-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.56 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
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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "vue3-project-template",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
"prettier": "prettier --write .",
"prepare": "husky install",
"commit:comment": "引导设置规范化的提交信息",
"commit": "git-cz"
},
"dependencies": {
"@element-plus/icons-vue": "^1.1.4",
"@vueuse/core": "^8.2.5",
"axios": "^0.26.1",
"clipboard": "^2.0.11",
"element-plus": "^2.1.8",
"mqtt": "^4.3.7",
"nprogress": "^0.2.0",
"pinia": "^2.0.0-rc.10",
"pinia-plugin-persistedstate": "^3.1.0",
"vite": "^4.2.1",
"vue": "^3.2.25",
"vue-json-pretty": "^2.2.4",
"vue-router": "4",
"vue3-json-viewer": "^2.2.2"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@iconify-json/ic": "^1.1.13",
"@types/node": "^17.0.23",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@unocss/inspector": "^0.50.6",
"@unocss/preset-attributify": "^0.50.6",
"@unocss/preset-icons": "^0.50.6",
"@unocss/preset-uno": "^0.50.6",
"@vitejs/plugin-vue": "^2.3.0",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"dart-sass": "^1.25.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"husky": "^7.0.4",
"less": "^4.1.3",
"lint-staged": "^12.3.7",
"mrm": "^4.0.0",
"postcss": "^8.4.21",
"postcss-preset-env": "^8.2.0",
"prettier": "^2.6.2",
"sass": "^1.49.11",
"standard": "^17.0.0",
"stylelint": "^14.6.1",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-scss": "^4.2.0",
"typescript": "^4.5.4",
"unocss": "^0.50.6",
"unplugin-auto-import": "^0.6.9",
"unplugin-vue-components": "^0.18.5",
"unplugin-vue-inspector": "^0.2.3",
"vite-plugin-vue-inspector": "^3.4.0",
"vue-tsc": "^0.29.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"npm run lint",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}