Files
2026-09-03 22:02:52 +09:00

20 lines
492 B
JSON

{
"name": "@orderops/api",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "bun --watch src/server.ts",
"start": "bun run src/server.ts",
"check": "bun run tsc -p tsconfig.json --noEmit",
"seed": "bun run src/db/run-seed.ts",
"seed:user": "bun run src/users/run-seed-user.ts",
"test": "bun test"
},
"dependencies": {
"@fastify/cors": "11.3.0",
"@orderops/shared": "workspace:*",
"drizzle-orm": "0.45.2",
"fastify": "5.12.1"
}
}