This repository has been archived on 2024-01-23. You can view files and clone it, but cannot push or open issues/pull-requests.
API/package.json

34 lines
804 B
JSON

{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node build/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q build/index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^8.0.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/node": "^20.10.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"concurrently": "^8.2.2",
"nodemon": "^3.0.2",
"typescript": "^5.3.2"
}
}