forked from rohit/spurrin-backend
68 lines
1.9 KiB
JSON
68 lines
1.9 KiB
JSON
{
|
|
"name": "spurrinai-backend",
|
|
"version": "1.0.0",
|
|
"description": "SpurrinAI Backend Node.js Application",
|
|
"main": "src/app.js",
|
|
"scripts": {
|
|
"start": "node src/app.js",
|
|
"dev": "nodemon src/app.js",
|
|
"test": "npm run test:unit && npm run test:integration",
|
|
"test:unit": "jest tests/unit",
|
|
"test:integration": "jest tests/integration",
|
|
"setup": "node scripts/setup.js",
|
|
"lint": "eslint src/**/*.js",
|
|
"lint:fix": "eslint src/**/*.js --fix",
|
|
"format": "prettier --write \"src/**/*.js\"",
|
|
"migrate": "node src/migrations/runMigrations.js",
|
|
"migrate:up": "node src/migrations/runMigrations.js up",
|
|
"migrate:down": "node src/migrations/runMigrations.js down",
|
|
"migrate:create": "node src/migrations/createMigration.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "Tech4biz Solutions",
|
|
"license": "UNLICENSED",
|
|
"private": true,
|
|
"dependencies": {
|
|
"axios": "^1.7.9",
|
|
"bcrypt": "^5.1.1",
|
|
"child_process": "^1.0.2",
|
|
"compression": "^1.7.4",
|
|
"compromise": "^14.14.4",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.0.3",
|
|
"express": "^4.18.2",
|
|
"express-rate-limit": "^6.7.0",
|
|
"fast-levenshtein": "^3.0.0",
|
|
"form-data": "^4.0.1",
|
|
"helmet": "^7.0.0",
|
|
"joi": "^17.13.3",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"multer": "^1.4.5-lts.1",
|
|
"mysql": "^2.18.1",
|
|
"mysql2": "^3.2.0",
|
|
"natural": "^8.0.1",
|
|
"node-cron": "^3.0.3",
|
|
"nodemailer": "^6.10.0",
|
|
"number-to-words": "^1.2.4",
|
|
"path": "^0.12.7",
|
|
"pm2": "^6.0.8",
|
|
"socket.io": "^4.8.1",
|
|
"stopword": "^3.1.4",
|
|
"string-similarity": "^4.0.4",
|
|
"uuid": "^11.0.5",
|
|
"winston": "^3.17.0",
|
|
"ws": "^8.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.38.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest": "^29.5.0",
|
|
"nodemon": "^2.0.22",
|
|
"prettier": "^2.8.7"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
}
|
|
}
|