40 lines
973 B
JSON
40 lines
973 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",
|
|
"morgan": "^1.10.0",
|
|
"multer": "^1.4.5-lts.1",
|
|
"swagger-jsdoc": "^6.2.8",
|
|
"swagger-ui-express": "^5.0.0",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcrypt": "^5.0.2",
|
|
"@types/express": "^4.17.21",
|
|
"@types/morgan": "^1.9.9",
|
|
"@types/multer": "^1.4.11",
|
|
"@types/node": "^20.10.2",
|
|
"@types/swagger-jsdoc": "^6.0.4",
|
|
"@types/swagger-ui-express": "^4.1.6",
|
|
"@types/uuid": "^9.0.7",
|
|
"concurrently": "^8.2.2",
|
|
"nodemon": "^3.0.2",
|
|
"typescript": "^5.3.2"
|
|
}
|
|
}
|