Files
recipe-manager/server/package.json
2022-11-17 18:08:31 -06:00

43 lines
1.1 KiB
JSON

{
"name": "server",
"version": "1.0.0",
"description": "REST API for recipe manager",
"main": "dist/index.js",
"scripts": {
"start": "tsc && nodemon dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@databases/pg": "^5.4.1",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"helmet": "^6.0.0",
"http-errors": "^2.0.0",
"js-yaml": "^4.1.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg": "^8.8.0",
"pg-promise": "^10.15.0",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/http-errors": "^2.0.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.9",
"@types/pg": "^8.6.5",
"@types/pg-promise": "^5.4.3",
"@types/swagger-ui-express": "^4.1.3",
"nodemon": "^2.0.20",
"tslint": "^6.1.3",
"typescript": "^4.9.3"
}
}