oneuptime/backend/package.json

69 lines
2.1 KiB
JSON
Raw Normal View History

2019-08-02 12:56:16 +00:00
{
2020-02-27 11:15:46 +00:00
"name": "fyipe-backend",
2020-05-19 20:02:11 +00:00
"version": "3.0.0",
2020-02-27 11:15:46 +00:00
"private": true,
"dependencies": {
"@slack/client": "^4.12.0",
"airtable": "^0.7.2",
"axios": "^0.18.1",
"bcrypt": "^3.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.4",
"cross-env": "^6.0.3",
"date-fns": "^2.9.0",
"dompurify": "^2.0.7",
"ejs": "^2.6.2",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"gridfs-stream": "^1.1.1",
"iplocation": "^6.1.0",
"jsdom": "^9.12.0",
"jsonwebtoken": "^8.5.1",
"jstoxml": "^1.6.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
2020-03-02 17:43:57 +00:00
"mongoose": "^5.7.14",
2020-02-27 11:15:46 +00:00
"multer": "^1.4.2",
"multer-gridfs-storage": "^3.3.0",
"nanoid": "^1.3.0",
"ngrok": "^3.2.5",
"node-cron": "^2.0.3",
"nodemailer": "^4.6.2",
"nodemailer-express-handlebars": "^3.1.0",
"otplib": "^12.0.0",
"rand-token": "^0.4.0",
"rate-limit-redis": "^1.7.0",
2020-05-01 14:39:29 +00:00
"saml2-js": "^2.0.5",
2020-02-27 11:15:46 +00:00
"slugify": "^1.3.1",
"socket.io": "^2.3.0",
"socket.io-redis": "^5.2.0",
"speakeasy": "^2.0.0",
2020-05-08 19:07:14 +00:00
"stripe": "^8.50.0",
2020-02-27 11:15:46 +00:00
"twilio": "^3.33.2",
"uuid": "^3.2.1",
"valid-url": "^1.0.9",
"winston": "^2.4.0",
"winston-slack-transport": "^2.0.0"
},
"scripts": {
"start": "node server.js",
"dev": "cross-env NODE_ENV=development nodemon server.js",
"test": "cross-env NODE_ENV=development mocha --exit test/index.js",
2020-03-05 16:56:50 +00:00
"enterprise-test": "cross-env NODE_ENV=development mocha --exit test/enterprise.js",
2020-02-27 11:15:46 +00:00
"audit": "npm-audit-ci-wrapper --threshold=high",
2020-02-27 11:28:52 +00:00
"dep-check": "depcheck ./ --skip-missing=true --ignores='ejs'"
2020-02-27 11:15:46 +00:00
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"chai-subset": "^1.6.0",
"custom-env": "^1.0.2",
"depcheck": "^0.9.2",
"mocha": "^6.2.2",
"nodemon": "^1.18.4",
2020-04-06 20:23:34 +00:00
"npm-audit-ci-wrapper": "^2.5.1",
2020-02-27 11:15:46 +00:00
"sinon": "^4.5.0"
}
2019-08-02 12:56:16 +00:00
}