-
Notifications
You must be signed in to change notification settings - Fork 258
/
package.json
91 lines (91 loc) · 2.54 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-h5-template",
"homepage": "https://yulimchen.github.io/vue3-h5-template/",
"version": "0.6.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yulimchen/vue3-h5-template.git"
},
"bugs": {
"url": "https://github.com/yulimchen/vue3-h5-template/issues"
},
"engines": {
"node": ">= 18",
"pnpm": ">= 9"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint:eslint": "eslint . --fix",
"lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
"release": "standard-version",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.7.7",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.2.5",
"vant": "^4.9.8",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.14.0",
"@iconify-icons/fa6-solid": "^1.2.13",
"@iconify/vue": "^4.1.2",
"@rushstack/eslint-patch": "^1.10.4",
"@types/node": "^22.8.7",
"@types/nprogress": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vue/eslint-config-typescript": "^14.1.3",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.20",
"cnjm-postcss-px-to-viewport": "^1.0.1",
"commitlint": "^19.5.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.30.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"less": "^4.2.0",
"mockjs": "^1.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"tailwindcss": "^3.4.14",
"typescript": "~5.6.3",
"typescript-eslint": "^8.12.2",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.10",
"vite-plugin-cdn2": "^1.1.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.2",
"vite-plugin-mock-dev-server": "^1.8.0",
"vite-plugin-svg-icons": "^2.0.1",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.1.10"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup"
],
"allowedVersions": {
"eslint": "9"
}
}
}
}