recipe-backend/package.json
2025-11-18 20:26:28 +01:00

35 lines
1 KiB
JSON

{
"name": "recipe-backend",
"version": "0.0.1",
"description": "A backend for managin recipes",
"type": "module",
"devDependencies": {
"@types/node": "^22.13.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"dependencies": {
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/memory-cache": "^0.2.6",
"bcrypt": "^6.0.0",
"concurrently": "^9.2.1",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"memory-cache": "^0.2.0",
"pg": "^8.14.1",
"reflect-metadata": "^0.2.2",
"typeorm": "0.3.27"
},
"scripts": {
"watch": "tsc -w",
"dev": "nodemon build/index.js",
"start:dev": "concurrently \"tsc -w\" \"nodemon build/index.js\"",
"build": "tsc",
"start": "ts-node src/index.ts",
"typeorm": "typeorm-ts-node-commonjs",
"migration": " npm run typeorm migration:run -- -d ./src/data-source.ts"
}
}