-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "vue3-front-common",
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky install",
"release": "standard-version && git push --follow-tags origin master",
"release:minor": "standard-version --release-as minor && git push --follow-tags origin master",
"release:major": "standard-version --release-as major && git push --follow-tags origin master"
},
"dependencies": {
"@vueuse/core": "^9.10.0",
"ali-oss": "^6.17.1",
"axios": "^1.2.2",
"cropperjs": "^1.5.13",
"dayjs": "^1.11.7",
"driver.js": "^0.9.8",
"file-saver": "^2.0.5",
"gsap": "^3.11.4",
"md5": "^2.3.0",
"vee-validate": "^4.7.3",
"vue": "^3.2.45",
"vue-router": "^4.1.6",
"vuex": "^4.1.0",
"vuex-persistedstate": "^4.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^12.1.4",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.13",
"babel-eslint": "^10.1.0",
"commitlint-config-cz": "^0.13.3",
"commitlint-config-git-commit-emoji": "^1.0.0",
"cz-customizable": "^6.3.0",
"eslint": "^8.31.0",
"eslint-plugin-vue": "^9.8.0",
"husky": "^7.0.1",
"lint-staged": "^13.1.0",
"postcss": "^8.4.20",
"sass": "^1.57.1",
"standard-version": "^9.5.0",
"tailwind-scrollbar": "^2.1.0",
"tailwindcss": "^3.2.4",
"vite": "^4.0.0",
"vite-plugin-svg-icons": "^2.0.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"src/**/*.{js,vue}": [
"git add"
]
}
}