2021-05-31 19:06:40 +00:00
|
|
|
{
|
|
|
|
"name": "xsshunter-express",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Simplified and easy-to-setup version of XSS Hunter for self-hosting.",
|
|
|
|
"main": "server.js",
|
|
|
|
"scripts": {
|
2023-01-29 19:46:28 +00:00
|
|
|
"test": "jest",
|
2023-01-30 23:02:29 +00:00
|
|
|
"start": "node server.js",
|
|
|
|
"db:makemigrations": "./node_modules/sequelize-auto-migrations/bin/makemigration.js"
|
2021-05-31 19:06:40 +00:00
|
|
|
},
|
|
|
|
"author": "mandatory (Matthew Bryant)",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
|
|
|
"@deveodk/vue-toastr": "^1.1.0",
|
2023-01-29 19:46:28 +00:00
|
|
|
"@google-cloud/storage": "^6.9.0",
|
|
|
|
"@sendgrid/mail": "^7.7.0",
|
2023-01-30 23:02:19 +00:00
|
|
|
"@sentry/node": "^7.34.0",
|
2023-01-31 15:54:14 +00:00
|
|
|
"@sentry/profiling-node": "^0.0.12",
|
2023-01-30 23:02:19 +00:00
|
|
|
"@sentry/tracing": "^7.34.0",
|
2023-01-25 16:54:53 +00:00
|
|
|
"@truffledustin/node-client-sessions": "^0.8.0",
|
2021-05-31 19:06:40 +00:00
|
|
|
"bcrypt": "^5.0.1",
|
2023-01-25 16:54:53 +00:00
|
|
|
"body-parser": "^1.20.1",
|
2021-05-31 19:06:40 +00:00
|
|
|
"cors": "^2.8.5",
|
|
|
|
"express": "^4.17.1",
|
|
|
|
"express-jsonschema": "^1.1.6",
|
2023-01-25 16:54:53 +00:00
|
|
|
"google-auth-library": "^8.7.0",
|
|
|
|
"googleapis": "^110.0.0",
|
2021-05-31 19:06:40 +00:00
|
|
|
"keygrip": "^1.1.0",
|
|
|
|
"memorystore": "^1.6.6",
|
|
|
|
"moment": "^2.29.1",
|
2023-01-27 02:15:48 +00:00
|
|
|
"multer": "^1.4.5-lts.1",
|
2021-05-31 19:06:40 +00:00
|
|
|
"mustache": "^4.1.0",
|
|
|
|
"nodemailer": "^6.5.0",
|
|
|
|
"pg": "^8.5.1",
|
|
|
|
"safe-compare": "^1.1.4",
|
|
|
|
"sequelize": "^6.5.0",
|
|
|
|
"serve-favicon": "^2.5.0",
|
|
|
|
"uuid": "^8.3.2",
|
2023-01-25 16:54:53 +00:00
|
|
|
"vue-moment": "^4.1.0"
|
2023-01-30 23:02:29 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-01-31 15:52:31 +00:00
|
|
|
"jest": "^29.4.1"
|
2021-05-31 19:06:40 +00:00
|
|
|
}
|
|
|
|
}
|