wutzcalc/server/package.json

25 lines
580 B
JSON

{
"name": "server",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/static": "^7.0.4",
"@wutzcalc/shared": "workspace:*",
"better-sqlite3": "^11.0.0",
"fastify": "^4.28.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.10",
"@types/node": "^20.12.0",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
}
}