44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"name": "luckychit-backend",
|
|
"version": "1.0.0",
|
|
"description": "Backend API for LuckyChit - Digital Chit Fund Management Platform",
|
|
"main": "src/server.js",
|
|
"scripts": {
|
|
"start": "node src/server.js",
|
|
"dev": "nodemon src/server.js",
|
|
"migrate:pg-to-sqlite": "node scripts/migrate-pg-to-sqlite.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"chit-fund",
|
|
"lottery",
|
|
"finance",
|
|
"api",
|
|
"nodejs",
|
|
"express"
|
|
],
|
|
"author": "LuckyChit Team",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"axios": "^1.11.0",
|
|
"bcrypt": "^5.1.1",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"express-rate-limit": "^7.1.5",
|
|
"helmet": "^7.1.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"moment-timezone": "^0.5.43",
|
|
"morgan": "^1.10.0",
|
|
"node-cron": "^3.0.3",
|
|
"pg": "^8.11.3",
|
|
"pg-hstore": "^2.3.4",
|
|
"sequelize": "^6.35.2",
|
|
"sqlite3": "^5.1.7",
|
|
"winston": "^3.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.2"
|
|
}
|
|
}
|