-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
73 lines (73 loc) · 1.91 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
{
"name": "vue-vite-h5",
"version": "0.2.0",
"license": "MIT",
"author": "LZHD",
"description": "Developing with Vue 3 and Typescript in Vite.",
"repository": {
"type": "git",
"url": "https://github.com/LZHD/vue-vite-h5"
},
"bugs": {
"url": "https://github.com/LZHD/vue-vite-h5/issues"
},
"homepage": "https://github.com/LZHD/vue-vite-h5#readme",
"scripts": {
"dev": "vite",
"start": "npm run dev",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.jsx,.vue,.ts,.tsx src",
"generate": "plop"
},
"dependencies": {
"axios": "^1.3.5",
"dayjs": "^1.11.7",
"pinia": "^2.0.34",
"vant": "^4.1.2",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@types/node": "^16.18.23",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-vue": "^4.1.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/compiler-sfc": "^3.2.47",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"autoprefixer": "^10.4.14",
"babel-plugin-dynamic-import-node": "^2.3.3",
"eslint": "^8.38.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.10.0",
"lint-staged": "^13.2.1",
"plop": "^3.1.2",
"postcss": "^8.4.21",
"postcss-pxtorem": "^6.0.0",
"prettier": "^2.8.7",
"sass": "^1.61.0",
"typescript": "^5.0.4",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.2.1",
"vite-plugin-eslint": "^1.8.1",
"vue-eslint-parser": "^9.1.1",
"vue-tsc": "^1.2.0",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"eslint"
]
},
"engines": {
"node": ">=14.20.0"
}
}