-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 932 Bytes
/
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
{
"name": "view-ui-project-ts",
"private": true,
"version": "1.0.0",
"description": "a template project for vue3, ViewUIPlus, TypeScript and Vite.",
"scripts": {
"serve": "npm run dev",
"dev": "vite serve",
"dev:staging": "vite serve --mode=staging",
"dev:prod": "vite serve --mode=production",
"build": "vite build",
"build:staging": "vite build --mode=staging",
"preview": "npm run build && vite preview",
"preview:staging": "npm run build:staging && vite preview --mode=staging"
},
"dependencies": {
"view-ui-plus": "^1.3.1",
"vue": "^3.2.25",
"vue-router": "^4.0.16"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"autoprefixer": "^10.4.5",
"less": "^4.0.0",
"less-loader": "^10.2.0",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vite-plugin-html": "^3.2.0",
"vue-tsc": "^0.34.7"
}
}