ERP-node/backend-node/package.json

79 lines
2.0 KiB
JSON
Raw Normal View History

2025-08-21 09:41:46 +09:00
{
"name": "pms-backend-node",
"version": "1.0.0",
"description": "PLM System Backend - Node.js + TypeScript",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"format": "prettier --write src/",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"prisma:seed": "prisma db seed"
},
"keywords": [
"plm",
"nodejs",
"typescript",
"express",
"prisma"
],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.7.1",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
2025-08-21 09:41:46 +09:00
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
2025-08-21 09:41:46 +09:00
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.7",
"pg": "^8.16.3",
"prisma": "^5.7.1",
2025-08-21 09:41:46 +09:00
"redis": "^4.6.10",
"winston": "^3.11.0"
2025-08-21 09:41:46 +09:00
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
2025-08-21 09:41:46 +09:00
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
2025-09-05 12:04:13 +09:00
"@types/multer": "^1.4.13",
"@types/node": "^20.10.5",
"@types/node-cron": "^3.0.11",
2025-08-21 09:41:46 +09:00
"@types/nodemailer": "^6.4.14",
"@types/pg": "^8.15.5",
2025-08-21 09:41:46 +09:00
"@types/sanitize-html": "^2.9.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
2025-08-21 09:41:46 +09:00
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.0",
2025-08-21 09:41:46 +09:00
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
2025-08-21 09:41:46 +09:00
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.0.0"
}
}