lego/back-end/package.json
2024-11-10 16:02:33 +01:00

35 lines
914 B
JSON

{
"name": "back-end",
"version": "1.0.0",
"main": "dist/app.js",
"scripts": {
"startonly": "node dist/app.js",
"start": "npm run build && node dist/app.js",
"build": "tsc && cp -r src/templates dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/pg": "^8.11.10",
"globals": "^15.11.0",
"typescript": "^5.6.3"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.1",
"jose": "^5.9.6",
"morgan": "^1.10.0",
"pg": "^8.13.1"
}
}