-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.01 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 4.01 KB
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
118
119
120
121
122
123
124
125
126
127
128
{
"name": "vue-starter",
"private": false,
"version": "0.3.11",
"description": "基于vue3、typesScript、vite3 开发脚手架.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/funnyzak/vue-starter.git"
},
"keywords": [
"vue",
"vue3",
"vite",
"vue-starter",
"vite-vue",
"typescript"
],
"author": "leon <silenceace@gmail.com>",
"scripts": {
"postinstall": "patch-package",
"debug": "vite --debug --mode development",
"dev": "vite --mode development",
"build": "npm run ts:check && vite build --mode production",
"build:prod": "vite build --mode production",
"build:demo": "vite build --mode demo",
"build:dev": "vite build --mode development",
"build:test": "npm run ts:check && vite build --mode test",
"serve:prod": "vite --mode production",
"serve:dev": "vite --mode development",
"serve:test": "vite --mode test",
"serve:demo": "vite --mode demo",
"preview": "vite preview",
"npm:check": "npx npm-check-updates",
"clean": "npx rimraf node_modules",
"clean:cache": "npx rimraf node_modules/.cache",
"ts:check": "vue-tsc --noEmit",
"eslint:check": "eslint --ext .js,.ts,.vue,.tsx,.cjs ./",
"eslint:fix": "eslint --fix --ext .js,.ts,.vue,.tsx,.cjs ./",
"style:check": "prettier --check --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,vue,html,md,cjs}\"",
"style:fix": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,vue,html,md,cjs}\"",
"lint:check": "npm run eslint:check && npm run style:check",
"lint:fix": "npm run eslint:fix && npm run style:fix",
"lint:staged": "lint-staged",
"p": "plop",
"prepare": "if [[ $NODE_ENV != \"production\" ]]; then husky install; fi && patch-package",
"windicss-analysis": "windicss-analysis",
"test": "vitest",
"test-ui": "vitest --ui",
"cov": "vitest run --coverage"
},
"dependencies": {
"@vueuse/core": "9.10.0",
"animate.css": "4.1.1",
"axios": "1.2.2",
"intro.js": "6.0.0",
"jsencrypt": "3.3.1",
"lodash-es": "4.17.21",
"mitt": "3.0.0",
"nprogress": "0.2.0",
"pinia": "2.0.28",
"pinia-plugin-persist": "1.0.0",
"qs": "6.11.0",
"vue": "3.2.45",
"vue-i18n": "9.2.2",
"vue-router": "4.1.6",
"vue-types": "5.0.2",
"web-storage-cache": "1.1.1"
},
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "7.0.0",
"@types/intro.js": "5.1.0",
"@types/lodash-es": "4.17.6",
"@types/node": "18.11.18",
"@types/nprogress": "0.2.0",
"@types/qs": "6.9.7",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"@vitejs/plugin-legacy": "3.0.0",
"@vitejs/plugin-vue": "3.2.0",
"@vitejs/plugin-vue-jsx": "2.1.1",
"@vitest/coverage-c8": "0.26.3",
"@vitest/ui": "0.26.2",
"c8": "7.12.0",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-define-config": "1.13.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "9.8.0",
"husky": "8.0.2",
"less": "4.1.3",
"lint-staged": "13.1.0",
"patch-package": "6.5.1",
"plop": "3.1.1",
"postinstall-postinstall": "2.1.0",
"prettier": "2.8.1",
"rimraf": "3.0.2",
"sass": "1.57.1",
"stylus": "0.59.0",
"terser": "5.16.1",
"typescript": "4.9.4",
"unplugin-vue-define-options": "1.1.6",
"vite": "3.2.5",
"vite-plugin-compression": "0.5.1",
"vite-plugin-eslint": "1.8.1",
"vite-plugin-svg-icons": "2.0.1",
"vite-plugin-windicss": "1.8.10",
"vitest": "0.26.3",
"vue-eslint-parser": "9.1.0",
"vue-tsc": "1.0.24",
"windicss": "3.5.6",
"windicss-analysis": "0.3.5"
},
"lint-staged": {
"*.{js,cjs,jsx,vue,ts,tsx}": [
"prettier --write",
"eslint --fix --cache"
],
"*.{md,html,json,css,less,scss,sass}": [
"prettier --write"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/funnyzak/vue-starter/issues"
},
"homepage": "https://github.com/funnyzak/vue-starter#readme"
}