NODEDC_TASKMANAGER_CODEXAPI/package.json

29 lines
640 B
JSON

{
"name": "@nodedc/tasker-codex-api",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.json",
"check": "tsc --noEmit -p tsconfig.json",
"migrate": "tsx src/scripts/migrate.ts",
"migrate:dist": "node dist/scripts/migrate.js",
"start": "node dist/server.js"
},
"dependencies": {
"fastify": "^5.8.5",
"pg": "^8.20.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.7.0",
"@types/pg": "^8.20.0",
"tsx": "^4.22.0",
"typescript": "^6.0.3"
}
}