Files
anonymous_github/package.json
2022-10-24 14:54:58 +02:00

90 lines
2.5 KiB
JSON

{
"name": "anonymous_github",
"version": "2.1.0",
"description": "Anonymise Github repositories for double-anonymous reviews",
"main": "index.ts",
"scripts": {
"test": "mocha --reporter spec",
"start": "node --inspect=5858 -r ts-node/register ./index.ts",
"dev": "nodemon --transpile-only index.ts",
"migrateDB": "ts-node --transpile-only migrateDB.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tdurieux/anonymous_github.git"
},
"author": "Thomas Durieux",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/tdurieux/anonymous_github/issues"
},
"funding": {
"url": "https://github.com/sponsors/tdurieux"
},
"homepage": "https://github.com/tdurieux/anonymous_github#readme",
"dependencies": {
"@octokit/oauth-app": "^4.1.0",
"@octokit/rest": "^19.0.5",
"@pm2/io": "^5.0.0",
"archiver": "^5.3.1",
"aws-sdk": "^2.1238.0",
"bullmq": "^2.3.2",
"compression": "^1.7.4",
"connect-redis": "^6.1.3",
"decompress-stream-to-s3": "^1.3.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.6.0",
"express-session": "^1.17.3",
"express-slow-down": "^1.5.0",
"got": "^11.8.5",
"istextorbinary": "^6.0.0",
"marked": "^4.1.1",
"mime-types": "^2.1.35",
"mongoose": "^6.6.7",
"node-schedule": "^2.1.0",
"parse-github-url": "^1.0.2",
"passport": "^0.6.0",
"passport-github2": "^0.1.12",
"rate-limit-redis": "^3.0.1",
"redis": "^4.3.1",
"textextensions": "^5.15.0",
"ts-custom-error": "^3.3.0",
"unzip-stream": "^0.3.1",
"xml-flow": "^1.0.4"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/compression": "^1.7.1",
"@types/connect-redis": "^0.0.18",
"@types/express": "^4.17.14",
"@types/express-rate-limit": "^6.0.0",
"@types/express-session": "^1.17.5",
"@types/express-slow-down": "^1.3.2",
"@types/got": "^9.6.12",
"@types/marked": "^4.0.7",
"@types/mime-types": "^2.1.0",
"@types/parse-github-url": "^1.0.0",
"@types/passport": "^1.0.11",
"@types/passport-github2": "^1.2.5",
"@types/rate-limit-redis": "^1.7.4",
"@types/tar-fs": "^2.0.1",
"@types/unzip-stream": "^0.3.1",
"@types/xml-flow": "^1.0.1",
"chai": "^4.3.6",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"nodemonConfig": {
"ignore": [
"public",
"test",
"repo",
"repositories",
"session-store"
]
}
}