-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.47 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
{
"name": "vue3-vite-ts-template",
"version": "0.0.2",
"author": {
"name": "hal-wang",
"email": "[email protected]",
"url": "https://github.com/hal-wang"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve:dist": "npm run build && halsp serve dist -p 3100",
"preview": "vite preview",
"lint:prettier": "prettier \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\"",
"lint:stylelint": "stylelint --cache \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"prepare": "husky install"
},
"dependencies": {
"@iconify/iconify": "^3.1.0",
"@stackblitz/sdk": "^1.9.0",
"ant-design-vue": "^3.2.20",
"nprogress": "^0.2.0",
"vue": "^3.3.4",
"vue-i18n": "^9.2.2",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@halsp/cli": "^0.4.2",
"@iconify/json": "^2.2.75",
"@types/node": "^20.2.5",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vitejs/plugin-vue": "^4.2.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.14.1",
"husky": "^8.0.3",
"less": "^4.1.3",
"postcss": "^8.4.24",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"prettier": "^2.8.8",
"stylelint": "^15.7.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^12.0.0",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-less": "^1.0.6",
"stylelint-order": "^6.0.3",
"typescript": "^5.1.3",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.3.9",
"vite-plugin-purge-icons": "^0.9.2",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-windicss": "^1.9.0",
"vue-eslint-parser": "^9.3.0",
"vue-tsc": "^1.6.5",
"windicss": "^3.5.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hal-wang/vue3-vite-ts-template.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hal-wang/vue3-vite-ts-template/issues"
},
"homepage": "https://github.com/hal-wang/vue3-vite-ts-template"
}