server/package.json

33 lines
889 B
JSON

{
"dependencies": {
"@types/express": "^4.17.6",
"@types/mongoose": "^5.7.28",
"@types/multer": "^1.4.3",
"@types/multer-s3": "^2.7.7",
"@types/mustache": "^4.0.1",
"@types/nodemailer": "^6.4.0",
"aws-sdk": "^2.706.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.9.20",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"multer-s3-v2": "^2.2.1",
"mustache": "^4.0.1",
"nodemailer": "^6.4.10",
"typescript": "^3.9.5"
},
"scripts": {
"test": "jest --verbose --detectOpenHandles",
"test-watch": "jest --verbose --watchAll",
"dev": "./node_modules/.bin/tsc --watch",
"serve": "./node_modules/.bin/nodemon dist/app.js",
"build": "./node_modules/.bin/tsc"
},
"main": "dist/index.js",
"devDependencies": {
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
}
}