48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"name": "water-api",
|
|
"version": "1.0.0",
|
|
"description": "Water Management System API",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"watch": "nodemon --exec ts-node src/index.ts"
|
|
},
|
|
"keywords": [
|
|
"water",
|
|
"management",
|
|
"api",
|
|
"express"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@types/multer": "^2.0.0",
|
|
"bcrypt": "^5.1.1",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.18.2",
|
|
"helmet": "^7.1.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"multer": "^2.0.2",
|
|
"node-cron": "^3.0.3",
|
|
"pg": "^8.11.3",
|
|
"winston": "^3.11.0",
|
|
"xlsx": "^0.18.5",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcrypt": "^5.0.2",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/jsonwebtoken": "^9.0.5",
|
|
"@types/node": "^20.11.5",
|
|
"@types/node-cron": "^3.0.11",
|
|
"@types/pg": "^8.10.9",
|
|
"nodemon": "^3.0.3",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|