single package

This commit is contained in:
2023-08-04 16:02:54 +00:00
parent 1287486d74
commit 58562e2c99
6 changed files with 827 additions and 45 deletions
+11 -3
View File
@@ -3,16 +3,24 @@
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"dev:client": "vite",
"dev:server": "nodemon ",
"dev": "concurrently 'npm:dev:client' 'npm:dev:server'",
"build": "run-p build:client build:server",
"build:client": "run-p type-check build-only:client",
"build:server": "tsc --project tsconfig.server.json",
"preview": "vite preview",
"build-only": "vite build",
"build-only:client": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"concurrently": "^8.2.0",
"express": "^4.18.2",
"nodemon": "^3.0.1",
"pinia": "^2.1.4",
"ts-node": "^10.9.1",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},