express01/package.json

32 lines
690 B
JSON
Raw Permalink Normal View History

2025-09-01 13:38:32 +00:00
{
"name": "express",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"dev": "nodemon --exec tsx src/index.ts",
2025-09-01 13:38:32 +00:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/client": "^6.15.0",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
2025-09-01 13:38:32 +00:00
"dotenv": "^17.2.1",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
2025-09-01 13:38:32 +00:00
"morgan": "^1.10.1"
},
"devDependencies": {
"@types/node": "^24.3.0",
"nodemon": "^3.1.10",
2025-09-01 13:38:32 +00:00
"prisma": "^6.15.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}