FunctionProject/api/package.json

39 lines
944 B
JSON
Raw Permalink 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",
"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",
"format": "standard \"./**/*.js\" --fix | snazzy"
2020-03-16 22:55:32 +01:00
},
"dependencies": {
"axios": "^0.21.0",
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-10-30 17:16:53 +01:00
"express-rate-limit": "^5.1.3",
"express-validator": "^6.6.1",
"helmet": "^4.1.1",
"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",
"ms": "^2.1.2",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.14",
"sequelize": "^6.3.5",
2020-03-25 16:23:43 +01:00
"smart-request-balancer": "^2.1.1",
"uuid": "^8.3.1",
2020-10-30 17:16:53 +01:00
"validator": "^13.1.17"
2020-03-16 22:55:32 +01:00
},
"devDependencies": {
"nodemon": "^2.0.6",
"snazzy": "^9.0.0",
"standard": "^16.0.0"
2020-03-16 22:55:32 +01:00
}
}