26 lines
604 B
JSON
26 lines
604 B
JSON
{
|
|
"name": "motd-app",
|
|
"version": "1.0.0",
|
|
"description": "Simple MOTD app with TypeScript, Redis, and Postgres",
|
|
"author": "Roman Siverov",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsx src/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.19.2",
|
|
"pg": "^8.12.0",
|
|
"redis": "^4.6.14"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.0",
|
|
"@types/node": "^22.7.4",
|
|
"@types/pg": "^8.20.0",
|
|
"tsx": "^4.19.1",
|
|
"typescript": "^5.6.2"
|
|
},
|
|
"packageManager": "pnpm@10.32.1"
|
|
}
|