-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.48 KB
/
package.json
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
{
"name": "scrims-bot-js",
"version": "5.0.0",
"description": "Main Bridge Scrims Bot",
"author": "Bridge Scrims Developer Team",
"license": "MIT",
"private": true,
"main": "./dist/index",
"type": "module",
"scripts": {
"build": "tsc && tsc-alias",
"dev": "concurrently \"tsc -w\" \"tsc-alias -w\"",
"start": "echo \"Use start:external or start:internal\" && exit 1",
"start:external": "node . external",
"start:internal": "node . internal",
"test": "cross-env TEST=true run-p start:*"
},
"dependencies": {
"ascii-table3": "^0.9.0",
"axios": "^1.7.7",
"discord-html-transcripts": "^3.2.0",
"discord.js": "^14.16.3",
"glob": "^11.0.0",
"luxon": "^3.5.0",
"module-alias": "^2.2.3",
"mongoose": "^8.9.2",
"mongoose-autopopulate": "^1.1.0",
"mongoose-long": "^0.8.0",
"rate-limiter-flexible": "^5.0.4",
"redis": "^4.7.0",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@types/luxon": "^3.4.2",
"@types/module-alias": "^2.0.4",
"@types/node": "^22.9.3",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2"
}
}