32 lines
702 B
JSON
32 lines
702 B
JSON
{
|
|
"name": "flowforge-backend",
|
|
"version": "1.0.0",
|
|
"description": "Backend for FlowForge automation platform",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"dev": "nodemon src/index.js",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"bcrypt": "^5.1.0",
|
|
"bull": "^4.10.4",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.0.3",
|
|
"express": "^4.18.2",
|
|
"express-rate-limit": "^6.7.0",
|
|
"helmet": "^6.1.5",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"knex": "^2.4.2",
|
|
"pg": "^8.10.0",
|
|
"redis": "^4.6.6",
|
|
"uuid": "^9.0.0",
|
|
"winston": "^3.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.5.0",
|
|
"nodemon": "^2.0.22",
|
|
"supertest": "^6.3.3"
|
|
}
|
|
}
|