salutedev-test-web-app/package.json

27 lines
604 B
JSON
Raw Normal View History

2026-06-04 14:11:13 +03:00
{
"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"
}