-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.35 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
{
"name": "vue3",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit --skipLibCheck && vite build",
"preview": "vite preview",
"lint:create": "eslint --init",
"prepare": "husky install",
"lint": "eslint \"src/**/*.{js,vue,ts}\" ",
"prettier-format": "prettier --config .prettierrc.cjs \"src/**/*.{vue,js,ts}\" --write",
"lint:css": "stylelint **/*.{css,sass,scss} ",
"test": "jest --coverage"
},
"dependencies": {
"@efox/emp-vuett": "^1.0.0",
"@vant/area-data": "^1.4.0",
"stylelint-selector-bem-pattern": "^2.1.1",
"tree": "^0.1.3",
"vue": "^3.2.45"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@testing-library/jest-dom": "^5.16.5",
"@types/jest": "26.0.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/test-utils": "^2.0.0-rc.18",
"babel-jest": "26.0.0",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"jest": "26.0.0",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"prettier": "^2.8.3",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"stylelint": "^13.x",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"ts-jest": "26.4.4",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^4.1.6",
"vue-class-component": "^8.0.0-rc.1",
"vue-jest": "^5.0.0-alpha.10",
"vue-router": "4",
"vue-tsc": "^1.0.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"npm run prettier-format"
],
"*.{less,css,sass,scss}": []
}
}