-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
60 lines (60 loc) · 1.75 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
{
"name": "preview-pro",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"dev:force": "vite --force",
"build": "vue-tsc --noEmit && vite build",
"build:ghpages": "vue-tsc --noEmit && vite build --base=/preview-pro/ --mode=ghpages",
"report": "vite build",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom",
"typecheck": "vue-tsc --noEmit && vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"@ant-design-vue/pro-layout": "^3.2.1",
"@ant-design/icons-vue": "^6.1.0",
"ant-design-vue": "^3.2.0",
"vue": "^3.2.33",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.3",
"@types/node": "^17.0.25",
"@vitejs/plugin-vue": "^2.3.1",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.13.0",
"eslint-plugin-vue": "^8.6.0",
"less": "^4.1.2",
"prettier": "^2.6.2",
"rollup-plugin-visualizer": "^5.6.0",
"typescript": "~4.5.5",
"unplugin-auto-import": "^0.5.11",
"unplugin-vue-components": "^0.17.21",
"vite": "^2.9.5",
"vite-plugin-optimize-persist": "^0.1.2",
"vite-plugin-package-config": "^0.1.1",
"vitest": "^0.9.3",
"vue-tsc": "^0.34.6"
},
"author": {
"email": "18x@loacg.com",
"name": "Sendya",
"url": "https://github.com/sendya"
},
"vite": {
"optimizeDeps": {
"include": [
"@ant-design-vue/pro-layout",
"ant-design-vue/es",
"vue",
"vue-router"
]
}
}
}