Added PlantTouchPoint and IPMSchedule models. Implemented touch-points and IPM controllers/routes. Updated frontend with Dashboard feed and IPM widgets.
35 lines
No EOL
808 B
JSON
35 lines
No EOL
808 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"
|
|
},
|
|
"prisma": {
|
|
"seed": "node prisma/seed.js"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/jwt": "^7.2.4",
|
|
"@prisma/client": "^5.7.0",
|
|
"@types/bcrypt": "^6.0.0",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"bcrypt": "^6.0.0",
|
|
"dotenv": "^16.3.1",
|
|
"fastify": "^4.25.0",
|
|
"fastify-plugin": "^4.5.0",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"eslint": "^8.56.0",
|
|
"jest": "^29.7.0",
|
|
"prisma": "^5.7.0",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
} |