Files

31 lines
832 B
JSON

{
"name": "@makers3d/api",
"version": "0.1.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/apps/api/src/index.js",
"dev": "tsx watch src/index.ts",
"db:migrate": "node dist/apps/api/src/scripts/migrate.js",
"db:seed": "node dist/apps/api/src/scripts/seed.js",
"test": "node --import tsx --test src/**/*.test.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.1.0",
"@fastify/formbody": "^8.0.2",
"@fastify/multipart": "^9.2.1",
"@makers3d/shared": "0.1.0",
"argon2": "^0.44.0",
"fastify": "^5.6.1",
"minio": "^8.0.6",
"pg": "^8.16.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/pg": "^8.15.6"
}
}