FunctionProject/api/package.json
2020-12-28 11:43:08 +01:00

48 lines
1.0 KiB
JSON

{
"name": "api",
"version": "2.3.0",
"description": "Backend REST API for FunctionProject",
"standard": {
"files": [
"./**/*.js"
],
"envs": [
"node"
]
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "standard | snazzy",
"format": "standard --fix | snazzy"
},
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"express-http-to-https": "^1.1.4",
"express-rate-limit": "^5.2.3",
"express-validator": "^6.9.0",
"helmet": "^4.3.1",
"jsdom": "^16.4.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.17",
"sequelize": "^6.3.5",
"smart-request-balancer": "^2.1.1",
"uuid": "^8.3.2",
"validator": "^13.5.2"
},
"devDependencies": {
"nodemon": "^2.0.6",
"snazzy": "^9.0.0",
"standard": "^16.0.3"
}
}