-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 869 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 869 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
26
27
28
29
{
"name": "vue-test",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "vite",
"dev:backend": "vite --config vite.backend.config.js",
"build": "npm run build:frontend && npm run build:backend && npm run gen:pkgDist",
"build:frontend": "vite build",
"build:backend": "vite --config vite.backend.config.js build",
"gen:pkgDist": "node generatePackageJson.js",
"preview": "cd ./dist && node server.cjs"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^5.1.0",
"vue": "^3.5.21",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.1",
"concurrently": "^9.2.1",
"vite": "^7.1.7",
"vite-plugin-node": "^7.0.0",
"vite-plugin-node-externals": "^0.0.1"
}
}