60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"name": "home-management-api",
|
|
"version": "1.0.0",
|
|
"description": "홈 관리 시스템 백엔드 API",
|
|
"main": "src/app.js",
|
|
"scripts": {
|
|
"start": "node src/app.js",
|
|
"dev": "nodemon src/app.js",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:unit": "jest --testPathPattern=tests/unit",
|
|
"test:integration": "jest --testPathPattern=tests/integration",
|
|
"test:coverage": "jest --coverage",
|
|
"db:migrate": "node scripts/migrate.js",
|
|
"db:seed": "node scripts/seed.js",
|
|
"lint": "eslint src/",
|
|
"lint:fix": "eslint src/ --fix"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.11.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"compression": "^1.7.4",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"express-rate-limit": "^6.8.1",
|
|
"express-validator": "^7.0.1",
|
|
"helmet": "^7.0.0",
|
|
"joi": "^17.9.2",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"moment": "^2.29.4",
|
|
"mysql2": "^3.6.0",
|
|
"node-cron": "^3.0.2",
|
|
"node-ssh": "^13.2.1",
|
|
"redis": "^4.6.7",
|
|
"sequelize": "^6.32.1",
|
|
"tp-link-tapo-connect": "^2.0.7",
|
|
"winston": "^3.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.45.0",
|
|
"jest": "^29.6.1",
|
|
"nodemon": "^3.0.1",
|
|
"prettier": "^3.0.0",
|
|
"supertest": "^6.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"keywords": [
|
|
"home-management",
|
|
"iot",
|
|
"monitoring",
|
|
"api",
|
|
"express"
|
|
],
|
|
"author": "hyungi",
|
|
"license": "MIT"
|
|
}
|