File size: 663 Bytes
c8ed262 | 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 | {
"name": "@workspace/api-server",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "NODE_ENV=development tsx ./src/index.ts",
"build": "tsx ./build.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@workspace/db": "workspace:*",
"@workspace/api-zod": "workspace:*",
"drizzle-orm": "catalog:",
"express": "^5",
"cookie-parser": "^1.4.7",
"cors": "^2"
},
"devDependencies": {
"@types/node": "catalog:",
"@types/express": "^5.0.6",
"@types/cors": "^2.8.19",
"@types/cookie-parser": "^1.4.10",
"esbuild": "^0.27.3",
"tsx": "catalog:"
}
}
|