35 lines
763 B
JSON
35 lines
763 B
JSON
{
|
|
"name": "honong",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Honong web app",
|
|
"license": "ISC",
|
|
"author": "Adam Vo",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "tsx --watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"gen-t": "kysely-codegen"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.19",
|
|
"@types/express": "^5.0.6",
|
|
"@types/morgan": "^1.9.10",
|
|
"@types/node": "^25.3.0",
|
|
"@types/pg": "^8.16.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.6",
|
|
"dotenv": "^17.3.1",
|
|
"express": "^5.2.1",
|
|
"kysely": "^0.28.11",
|
|
"kysely-codegen": "^0.20.0",
|
|
"morgan": "^1.10.1",
|
|
"pg": "^8.18.0"
|
|
}
|
|
}
|