27 lines
620 B
JSON
27 lines
620 B
JSON
{
|
|
"name": "backend",
|
|
"version": "0.1.0",
|
|
"description": "rdumb-blog backend with expressts and drizzle orm",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"start": "npx tsx --env-file=.env --watch src/index.ts"
|
|
},
|
|
"author": "Roy Dumblauskas",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"dotenv": "^17.4.2",
|
|
"drizzle-orm": "^1.0.0-rc.4",
|
|
"express": "^5.1.0",
|
|
"pg": "^8.22.0",
|
|
"uuid": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.5",
|
|
"@types/node": "^24.10.1",
|
|
"@types/pg": "^8.20.0",
|
|
"drizzle-kit": "^1.0.0-rc.4",
|
|
"tsx": "^4.22.4"
|
|
},
|
|
"type": "module"
|
|
}
|