FunctionProject/api/package.json

48 lines
1.0 KiB
JSON
Raw Normal View History

2020-03-16 22:55:32 +01:00
{
"name": "api",
2020-10-30 17:25:25 +01:00
"version": "2.2.0",
2020-03-16 22:55:32 +01:00
"description": "Backend REST API for FunctionProject",
2020-12-22 13:45:15 +01:00
"standard": {
"files": [
"./**/*.js"
],
"envs": [
"node"
]
},
2020-03-16 22:55:32 +01:00
"scripts": {
2020-04-12 17:39:05 +02:00
"start": "node app.js",
2020-08-03 12:04:07 +02:00
"dev": "nodemon app.js",
2020-12-22 13:45:15 +01:00
"lint": "standard | snazzy",
"format": "standard --fix | snazzy"
2020-03-16 22:55:32 +01:00
},
"dependencies": {
2020-12-22 13:45:15 +01:00
"axios": "^0.21.1",
2020-03-25 16:23:43 +01:00
"bcryptjs": "^2.4.3",
2020-03-16 22:55:32 +01:00
"cors": "^2.8.5",
2020-10-30 17:16:53 +01:00
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"express-http-to-https": "^1.1.4",
2020-12-22 13:45:15 +01:00
"express-rate-limit": "^5.2.3",
"express-validator": "^6.8.1",
"helmet": "^4.2.0",
"jsdom": "^16.4.0",
2020-03-25 16:23:43 +01:00
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
2020-10-30 17:16:53 +01:00
"morgan": "^1.10.0",
2020-12-22 13:45:15 +01:00
"ms": "^2.1.3",
"mysql2": "^2.2.5",
2020-12-22 13:45:15 +01:00
"nodemailer": "^6.4.17",
"sequelize": "^6.3.5",
2020-03-25 16:23:43 +01:00
"smart-request-balancer": "^2.1.1",
2020-12-22 13:45:15 +01:00
"uuid": "^8.3.2",
"validator": "^13.5.2"
2020-03-16 22:55:32 +01:00
},
"devDependencies": {
"nodemon": "^2.0.6",
"snazzy": "^9.0.0",
2020-12-22 13:45:15 +01:00
"standard": "^16.0.3"
2020-03-16 22:55:32 +01:00
}
}