-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
70 lines (70 loc) · 2.16 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
70
{
"name": "discord-bot",
"version": "3.1.0",
"description": "The CodeSupport Discord bot",
"main": "./build/app.js",
"scripts": {
"start": "node -r dotenv/config ./build/index.js",
"build": "tsc",
"dev": "cross-env NODE_ENV=dev nodemon --watch src --ext ts --exec 'ts-node -r dotenv/config ./src/index.ts'",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm test",
"test": "ts-mocha test/**/*Test.ts test/**/**/*Test.ts test/appTest.ts --require=test/test-setup.ts --exit",
"test:debug": "ts-mocha test/**/*Test.ts test/**/**/*Test.ts test/appTest.ts --timeout 999999999 --require=test/test-setup.ts --exit",
"lint": "eslint src test --ext .js,.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codesupport/discord-bot.git"
},
"keywords": [
"codesupport",
"discord",
"bot"
],
"author": "The CodeSupport Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/codesupport/discord-bot/issues"
},
"homepage": "https://github.com/codesupport/discord-bot#readme",
"type": "commonjs",
"engines": {
"node": "18"
},
"dependencies": {
"@codesupport/inherited-config": "^1.0.2",
"@logtail/node": "^0.4.17",
"axios": "1.6.0",
"axios-cache-interceptor": "^1.3.2",
"discord.js": "^14.8.0",
"discordx": "^11.7.6",
"dotenv": "^16.3.1",
"node-schedule": "^2.1.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.8.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@lambocreeper/mock-discord.js": "^3.0.0",
"@types/assert": "^1.5.2",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"@types/node-schedule": "^2.1.0",
"@types/sinon": "^10.0.16",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"chai": "^4.3.8",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"eslint-config-codesupport": "^1.0.2",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"sinon": "^15.2.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}