-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.67 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
{
"name": "admin-template-vue-ts",
"private": false,
"description": "Web 后台管理系统项目模版",
"version": "0.0.1",
"type": "module",
"main": "src/main.ts",
"scripts": {
"start": "vite --host",
"dev": "run-p type-check build-dev",
"test": "run-p type-check build-test",
"prod": "run-p type-check build-prod",
"build-dev": "vite build --mode dev",
"build-test": "vite build --mode test",
"build-prod": "vite build --mode prod",
"type-check": "vue-tsc",
"preview": "vite preview",
"preinstall": "npx only-allow pnpm",
"lint:eslint": "eslint --fix --ext .ts,.tsx,.js,.jsx,.vue src",
"lint:style": "stylelint --fix 'src/**/*.{css,scss,vue}'",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,vue}": [
"pnpm lint:eslint"
],
"src/**/*.{css,scss,vue}": [
"pnpm lint:style"
]
},
"keywords": [
"vue-admin-template",
"vue-vite-ts"
],
"engines": {
"node": ">=18.15.0"
},
"author": {
"name": "曾星旗",
"email": "me@zengxingqi.com",
"url": "https://canicode.cn"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/themages/admin-template-vue-ts.git"
},
"bugs": {
"url": "https://github.com/themages/admin-template-vue-ts/issues"
},
"homepage": "https://github.com/themages/admin-template-vue-ts",
"dependencies": {
"@fingerprintjs/fingerprintjs": "^3.4.1",
"@vueuse/core": "^9.13.0",
"axios": "^1.3.4",
"dayjs": "^1.11.7",
"lodash-es": "^4.17.21",
"pinia": "^2.0.33",
"qs": "^6.11.1",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@intlify/unplugin-vue-i18n": "^0.10.0",
"@types/lodash-es": "^4.17.7",
"@types/node": "^18.15.11",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@vitejs/plugin-vue": "^4.1.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.10.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.22",
"postcss-html": "^1.5.0",
"sass": "^1.60.0",
"stylelint": "^15.4.0",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-config-standard-vue": "^1.0.0",
"tailwindcss": "^3.3.1",
"typescript": "^4.9.5",
"vite": "^4.2.0",
"vite-plugin-inspect": "^0.7.18",
"vue-tsc": "^1.2.0"
}
}