32 lines
901 B
JSON
32 lines
901 B
JSON
{
|
|
"name": "work-server",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "npm run build && npm run start",
|
|
"build": "tsc -p tsconfig.json && node ./scripts/write-build-info.mjs",
|
|
"start": "node dist/server.js",
|
|
"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"
|
|
}
|
|
}
|