-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.12 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"type": "module",
"scripts": {
"dev": "npm run build && npm run swagger && npm run start",
"start": "node build/index.js",
"build": "rimraf ./build && tsc",
"docker_build": "docker build -t badbeatmods .",
"build_start": "npm run build && npm run start",
"swagger": "npx tsx src/api/generateSwagger.ts",
"test": "vitest run",
"lint": "npx eslint ./src --ext .ts"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"connect-sqlite3": "^0.9.16",
"cors": "^2.8.6",
"discord.js": "^14.25.1",
"express": "^5.2.1",
"express-fileupload": "^1.5.2",
"express-rate-limit": "^8.3.1",
"express-session": "^1.19.0",
"jszip": "^3.10.1",
"memorystore": "^1.6.7",
"octokit": "^5.0.5",
"openapi-types": "^12.1.3",
"passport": "^0.7.0",
"passport-discord": "^0.1.4",
"passport-github": "^1.1.0",
"passport-http-bearer": "^1.0.1",
"pg": "^8.20.0",
"pg-hstore": "^2.3.4",
"semver": "^7.7.4",
"sequelize": "^6.37.8",
"sqlite3": "^5.0.2",
"swagger-ui-express": "^5.0.1",
"umzug": "^3.8.2",
"winston": "^3.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@faker-js/faker": "^10.3.0",
"@octokit/types": "^16.0.0",
"@types/connect-sqlite3": "^0.9.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-fileupload": "^1.5.1",
"@types/express-session": "^1.18.2",
"@types/node": "^25.4.0",
"@types/node-fetch": "^2.6.13",
"@types/passport": "^1.0.17",
"@types/passport-discord": "^0.1.15",
"@types/passport-github": "^1.1.13",
"@types/passport-http-bearer": "^1.0.42",
"@types/pg": "^8.18.0",
"@types/semver": "^7.7.1",
"@types/supertest": "^7.2.0",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"rimraf": "^6.1.3",
"supertest": "^7.2.2",
"swagger-autogen": "^2.23.7",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}