29 lines
665 B
JSON
29 lines
665 B
JSON
{
|
|
"name": "@pi-car/server",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"lint": "eslint src tests",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cookie": "^11.0.2",
|
|
"@fastify/rate-limit": "^10.3.0",
|
|
"argon2": "^0.44.0",
|
|
"better-sqlite3": "^12.2.0",
|
|
"fastify": "^5.4.0",
|
|
"zod": "^4.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"@types/node": "^22.17.0",
|
|
"tsx": "^4.20.3"
|
|
}
|
|
}
|