-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 610 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 610 Bytes
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
{
"name": "playground-vite-vue3",
"private": true,
"scripts": {
"dev": "concurrently -r -k -g 'npm:build:deps' 'npm:dev:vite'",
"dev:vite": "vite",
"build": "vite build",
"build:deps": "pnpm --filter dom-to-code build:watch",
"serve": "vite preview"
},
"dependencies": {
"dom-to-code": "workspace:*",
"vue": "^3.2.40",
"vue-demi": "*"
},
"devDependencies": {
"@unocss/reset": "^0.45.22",
"@vitejs/plugin-vue": "^3.1.0",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"concurrently": "*",
"typescript": "*",
"unocss": "^0.45.22",
"vite": "*"
}
}