Files
ai-code-app/etc/servers/work-server/package.json

33 lines
1.1 KiB
JSON

{
"name": "work-server",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "npm run build && npm run start",
"build": "sh -c 'tsc -p tsconfig.json --outDir \"${WORK_SERVER_DIST_DIR:-dist}\" && node ./scripts/write-build-info.mjs'",
"start": "sh -c 'node \"${WORK_SERVER_DIST_DIR:-dist}/server.js\"'",
"backfill:codex-live-resource-paths": "node --import tsx ./scripts/backfill-codex-live-resource-paths.ts",
"backfill:chat-request-links": "node --import tsx ./scripts/backfill-chat-request-links.ts",
"backfill:chat-resource-urls": "node --import tsx ./scripts/backfill-chat-resource-urls.ts",
"test": "node --import tsx --test src/**/*.test.ts"
},
"dependencies": {
"@fastify/cors": "^11.1.0",
"@parse/node-apn": "^8.0.0",
"dotenv": "^17.2.2",
"fastify": "^5.6.0",
"knex": "^3.1.0",
"pg": "^8.16.3",
"web-push": "^3.6.7",
"ws": "^8.18.3",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/ws": "^8.18.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}