forked from JoshQuaintance/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.05 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
71
72
73
74
75
76
{
"name": "becca_lyria",
"author": "Nicholas Carrigan",
"main": "./prod/src/main.js",
"version": "17.6.1",
"license": "AGPL-3.0-or-later",
"private": false,
"engines": {
"node": "^16.10.0",
"npm": "^8.0.0"
},
"keywords": [
"DiscordJS",
"Discord",
"bot",
"discord-bot"
],
"repository": "https://github.com/BeccaLyria/discord-bot",
"bugs": {
"url": "https://github.com/BeccaLyria/discord-bot/issues"
},
"homepage": "https://github.com/BeccaLyria/discord-bot#readme",
"scripts": {
"prebuild": "rm -rf ./prod",
"build": "tsc",
"lint": "eslint src --max-warnings 0",
"start": "node -r dotenv/config ./prod/index.js",
"test": "ts-mocha -u tdd test/**/*.spec.ts --recursive --exit"
},
"dependencies": {
"@discordjs/builders": "^0.9.0",
"@discordjs/rest": "^0.1.0-canary.0",
<<<<<<< HEAD
"@sentry/integrations": "^6.15.0",
"@sentry/node": "^6.15.0",
"@sentry/tracing": "^6.13.3",
"@top-gg/sdk": "^3.1.2",
=======
"@pm2/io": "^5.0.0",
"@sentry/integrations": "^6.15.0",
"@sentry/node": "^6.15.0",
"@sentry/tracing": "^6.15.0",
"@top-gg/sdk": "^3.1.3",
>>>>>>> 8673bc33d3393ce2a13293e97ea75dfdb25b88f2
"axios": "^0.24.0",
"cors": "^2.8.5",
"discord-api-types": "^0.25.2",
"discord.js": "^13.3.1",
"express": "^4.17.1",
"leo-profanity": "^1.5.0",
"mongoose": "^6.0.14",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "4.3.0",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/mathjs": "9.4.1",
"@types/mocha": "9.0.0",
"@types/mongoose": "5.11.96",
"@types/node": "16.11.12",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"chai": "4.3.4",
"dotenv": "10.0.0",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsdoc": "37.2.0",
"eslint-plugin-prettier": "4.0.0",
"mocha": "9.1.3",
"prettier": "2.5.1",
"ts-mocha": "8.0.0",
"typescript": "4.5.3"
}
}