-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.04 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "rubot2",
"version": "1.0.0",
"description": "A General Purpose Discord Bot",
"main": "/dist/index.js",
"type": "commonjs",
"scripts": {
"start": "tsc --build --clean tsconfig.json; tsc --build tsconfig.json; node dist/index.js",
"nodemon": "nodemon --watch 'src/**/*.ts' src/index.ts",
"build": "tsc --build --clean tsconfig.json; tsc --build tsconfig.json",
"lint": "eslint --ext .ts src/ typings/ --fix",
"watch": "tsc -p tsconfig.json -w",
"test": "jest --detectOpenHandles"
},
"author": "Ruben Deisenroth",
"license": "ISC",
"dependencies": {
"@discordjs/voice": "^0.16.0",
"@typegoose/typegoose": "^11.6.0",
"@types/node": "^20.8.4",
"chartjs-node-canvas": "^4.1.6",
"cheerio": "^1.0.0-rc.12",
"colors": "^1.4.0",
"common-tags": "^1.8.2",
"commonjs": "^0.0.1",
"consola": "^3.2.3",
"cron": "^3.1.0",
"crypto-js": "^4.2.0",
"csv-parse": "^5.5.2",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"glob-promise": "^6.0.5",
"inversify": "^6.0.1",
"json5": "^2.2.3",
"moment": "^2.29.4",
"moment-duration-format": "^2.3.2",
"mongoose": "^7.6.1",
"node-fetch": "^3.3.2",
"reflect-metadata": "^0.1.13",
"tslib": "^2.6.2",
"urban": "^0.3.4",
"yargs": "^17.7.2",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/common-tags": "^1.8.2",
"@types/crypto-js": "^4.1.2",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.5",
"@types/mocha": "^10.0.2",
"@types/moment-duration-format": "^2.2.5",
"@types/urban-dictionary": "^3.0.0",
"@types/yargs": "^17.0.28",
"@types/yargs-parser": "^21.0.1",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"chai": "^4.3.10",
"eslint": "^8.51.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}