forked from Minori-ty/vite-js-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.03 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
{
"version": "0.0.0",
"scripts": {
"dev": "vite --open",
"build": "vite build",
"serve": "vite preview --open",
"lint": "lint-staged -c .lintstagedrc.cjs",
"lint:eslint": "eslint --cache \"src/**/*.{js,vue}\"",
"lint:fix": "eslint --cache \"src/**/*.{js,vue}\" --fix",
"lint:style": "stylelint \"src/**/*.{vue,css,less}\"",
"lint:prettier": "npx prettier --cache --write \"**/**/*.{vue,ts,tsx,scss,less,css,json}\"",
"all": "npm run lint:prettier && npm run lint:style && npm run lint:fix --fix",
"test": "jest",
"prepare": "husky install",
"preinstall": "npx only-allow yarn"
},
"dependencies": {
"axios": "^0.24.0",
"element-plus": "^1.3.0-beta.3",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"vite-plugin-compression": "0.4.0",
"vue": "^3.2.26",
"vue-router": "^4.0.12",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.16.8",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@types/node": "^17.0.8",
"@vitejs/plugin-vue": "^2.0.1",
"@vue/compiler-sfc": "^3.2.26",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/test-utils": "2.0.0-rc.17",
"autoprefixer": "^10.4.2",
"babel-core": "^6.26.3",
"babel-jest": "^27.4.6",
"commitizen": "^4.2.4",
"core-js": "^3.20.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"express": "^4.17.2",
"husky": "^7.0.4",
"jest": "^27.4.7",
"less": "^4.1.2",
"lint-staged": "^12.1.7",
"postcss": "^8.4.5",
"postcss-html": "^1.3.0",
"postcss-plugin-px2rem": "^0.8.1",
"postcss-px-to-viewport": "^1.1.1",
"prettier": "^2.7.1",
"rollup": "2.63.0",
"rollup-plugin-external-globals": "^0.6.1",
"sass": "^1.47.0",
"stylelint": "14.2.0",
"stylelint-config-html": "^1.0.0",
"stylelint-config-recommended-scss": "^5.0.2",
"stylelint-config-recommended-vue": "^1.1.0",
"stylelint-config-standard": "24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"unplugin-auto-import": "^0.5.9",
"unplugin-vue-components": "^0.17.11",
"vite": "^2.7.10",
"vite-plugin-cdn-import": "^0.3.5",
"vite-plugin-html": "^2.1.2",
"vite-plugin-imagemin": "^0.6.1",
"vue-template-compiler": "^2.6.14"
},
"resolutions": {
"bin-wrapper": "npm:bin-wrapper-china",
"rollup": "^2.56.3",
"gifsicle": "5.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}