Files
blog-service/backend/package.json
T

28 lines
648 B
JSON
Raw Normal View History

2025-11-14 17:26:52 -06:00
{
"name": "backend",
"version": "0.1.0",
"description": "rdumb-blog backend with expressts and drizzle orm",
"main": "src/index.ts",
"scripts": {
2025-11-14 17:40:10 -06:00
"start": "npx tsx --env-file=.env --watch src/index.ts"
2025-11-14 17:26:52 -06:00
},
"author": "Roy Dumblauskas",
"license": "ISC",
"dependencies": {
2026-05-22 18:38:03 -05:00
"dotenv": "^17.4.2",
2026-06-28 00:18:49 -05:00
"drizzle-orm": "^1.0.0-rc.4",
2025-11-14 17:33:57 -06:00
"express": "^5.1.0",
2026-06-28 00:18:49 -05:00
"pg": "^8.22.0",
2026-06-28 20:29:51 -05:00
"typescript": "^6.0.3",
2025-11-23 23:35:41 -06:00
"uuid": "^13.0.0"
2025-11-14 17:26:52 -06:00
},
"devDependencies": {
2025-11-14 17:33:57 -06:00
"@types/express": "^5.0.5",
"@types/node": "^24.10.1",
2026-05-22 18:38:03 -05:00
"@types/pg": "^8.20.0",
2026-06-28 00:18:49 -05:00
"drizzle-kit": "^1.0.0-rc.4",
"tsx": "^4.22.4"
2025-11-14 17:33:57 -06:00
},
"type": "module"
2025-11-14 17:26:52 -06:00
}