This commit is contained in:
2023-08-18 12:39:25 +00:00
parent 8e96f6082d
commit 7716c6936b
2 changed files with 88 additions and 115 deletions
+4 -3
View File
@@ -5,7 +5,7 @@
"type": "module",
"scripts": {
"dev:client": "vite",
"dev:server": "TS_NODE_PROJECT=\"tsconfig.server.json\" nodemon --watch 'server/**/*.ts' --exec 'node --experimental-specifier-resolution=node --loader ts-node/esm' server/index.ts",
"dev:server": "tsc-watch -p tsconfig.server.json --onSuccess \"node ./dist_server/index.js\"",
"dev": "concurrently 'npm:dev:client' 'npm:dev:server'",
"build": "run-p build:client build:server",
"build:client": "run-p type-check:client build-only:client",
@@ -39,7 +39,8 @@
"tslib": "^2.6.1",
"typeorm": "^0.3.17",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
"vue-router": "^4.2.4",
"zod": "^3.22.1"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.2",
@@ -57,10 +58,10 @@
"concurrently": "^8.2.0",
"eslint": "^8.45.0",
"eslint-plugin-vue": "^9.15.1",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"typescript": "~5.1.6",
"vite": "^4.4.6",
"vue-tsc": "^1.8.6"