-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.63 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "vite-vue-prod-template",
"version": "0.1.0",
"description": "vite-vue-prod-template",
"main": "index.js",
"scripts": {
"dev": "vite --mode mock",
"dev:alpha": "vite --mode alpha",
"dev:test": "vite --mode test",
"dev:test1": "vite --mode test1",
"dev:grey": "vite --mode grey",
"build:test": "vue-tsc --noEmit && vite build --mode test",
"build:test1": "vue-tsc --noEmit && vite build --mode test1",
"build": "vue-tsc --noEmit && vite build --mode prod",
"deploy": "TS_NODE_PROJECT='./build/tsconfig.json' ts-node ./build/build",
"serve": "vite preview",
"lint": "npx lint-staged",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"log": "npx conventional-changelog --config ./node_modules/@commitlint/cli -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vadxq/vite-vue-prod-template.git"
},
"keywords": [
"vue3",
"vite"
],
"author": "vadxq",
"license": "MIT",
"bugs": {
"url": "https://github.com/vadxq/vite-vue-prod-template/issues"
},
"homepage": "https://github.com/vadxq/vite-vue-prod-template#readme",
"dependencies": {
"@sentry/tracing": "^7.88.0",
"@sentry/vue": "^7.88.0",
"axios": "^1.6.2",
"pinia": "^2.1.7",
"vue": "^3.3.11",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-legacy": "^5.2.0",
"@vitejs/plugin-vue": "^4.5.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/compiler-sfc": "^3.3.11",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"conventional-changelog-cli": "^4.1.0",
"cssnano": "^6.0.2",
"eslint": "^8.55.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"mockjs": "^1.1.0",
"postcss": "^8.4.32",
"postcss-html": "^1.5.0",
"postcss-import": "^15.1.0",
"postcss-plugin-px2rem": "^0.8.1",
"postcss-preset-env": "^9.3.0",
"postcss-px-to-viewport": "^1.1.1",
"postcss-scss": "^4.0.9",
"prettier": "^3.1.1",
"qiniu": "^7.10.1",
"sass": "^1.69.5",
"stylelint": "^16.0.2",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^12.0.0",
"stylelint-order": "^6.0.4",
"tailwind-variants": "^0.1.18",
"tailwindcss": "^3.3.6",
"terser": "^5.26.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vconsole": "^3.15.1",
"vite": "^5.0.9",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mock": "^3.0.0",
"vite-plugin-vconsole": "^2.0.1",
"vue-eslint-parser": "^9.3.2",
"vue-tsc": "^1.8.25"
},
"browserslist": [
"last 5 versions",
"> 1%",
"not IE <= 10"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,vue}": "eslint --fix",
"*.{jsx,tsx,vue,css,scss,less,sass}": "stylelint --fix",
"*": "prettier -w -u"
}
}