forked from zhoukaiyue/vue3-pc-tmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.4 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
{
"name": "vue3-pc-tmp",
"version": "1.2.1",
"scripts": {
"dev": "vite --mode development",
"start": "npm run dev",
"build": "vite build --mode production",
"build:test": "vite build --mode test",
"build:prod": "vite build --mode production",
"preview": "vite preview --port 4173",
"lint:type": "vue-tsc --noEmit --skipLibCheck",
"lint:prettier": "npx prettier --write src/ --config ./.prettierrc.js",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix"
},
"scripts-info": {
"start": "运行开发环境服务器",
"build": "构建生产程序包",
"build:prod": "构建生产程序包",
"build:test": "构建灰度程序包",
"lint:type": "chenck ts 语法错误",
"lint:prettier": "格式化src/下所有文件",
"lint:fix": "对src/.js文件进行lint,并尝试修复一些格式类的错误,语法类需要手动修复"
},
"dependencies": {
"@types/qs": "^6.9.7",
"axios": "^1.2.1",
"dayjs": "^1.11.7",
"nprogress": "^0.2.0",
"pinia": "^2.0.23",
"qs": "^6.11.0",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"unocss": "^0.46.5",
"vite-plugin-html": "^3.2.0",
"vue": "^3.2.41",
"vue-clipboard3": "^2.0.0",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@types/jsdom": "^20.0.0",
"@types/node": "^16.11.68",
"@types/nprogress": "^0.2.0",
"@vicons/ionicons5": "^0.12.0",
"@vitejs/plugin-vue": "^3.1.2",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.1.0",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"jsdom": "^20.0.1",
"naive-ui": "^2.34.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.8.3",
"typescript": "~4.7.4",
"unplugin-auto-import": "^0.12.0",
"unplugin-vue-components": "^0.22.11",
"vite": "^3.1.8",
"vitest": "^0.24.3",
"vue-tsc": "^1.0.8",
"webpack": "^5.0.0"
},
"engines": {
"node": ">14",
"pnpm": ">=7"
}
}