| 12345678910111213141516171819202122 |
- {
- "name": "backend",
- "version": "1.0.0",
- "description": "Express 5 Backend API",
- "type": "module",
- "scripts": {
- "dev": "tsx watch src/index.ts",
- "build": "tsc",
- "start": "node dist/index.js"
- },
- "dependencies": {
- "express": "^5.0.0",
- "cors": "^2.8.5",
- "dotenv": "^16.4.5"
- },
- "devDependencies": {
- "@types/express": "^5.0.0",
- "@types/cors": "^2.8.17",
- "typescript": "^5.6.0",
- "tsx": "^4.19.0"
- }
- }
|