ca-grow-ops-manager/backend/package.json
fullsizemalt 9c5ffec28d
Some checks failed
Deploy to Production / deploy (push) Failing after 0s
Test / backend-test (push) Failing after 0s
Test / frontend-test (push) Failing after 0s
fix: Add missing project files for backend/frontend build
2025-12-09 00:23:28 -08:00

27 lines
610 B
JSON

{
"name": "ca-grow-ops-backend",
"version": "1.0.0",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node-dev src/server.ts",
"test": "jest",
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"@prisma/client": "^5.7.0",
"fastify": "^4.25.0",
"fastify-plugin": "^4.5.0",
"fastify-jwt": "^4.2.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"typescript": "^5.3.3",
"@types/node": "^20.10.0",
"prisma": "^5.7.0",
"ts-node-dev": "^2.0.0",
"jest": "^29.7.0",
"eslint": "^8.56.0"
}
}