-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "duxcore-discord-bot",
"version": "1.0.2",
"main": "index.js",
"repository": "https://github.com/duxcore/DiscordBot.git",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "nodemon --exec ts-node app.ts",
"start": "node dist/app.js",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts'",
"build": "tsc",
"watch": "tsc --watch"
},
"dependencies": {
"@duxcore/interactive-discord": "^1.4.6",
"@types/chai": "^4.2.18",
"@types/chalk": "^2.2.0",
"@types/dotenv": "^8.2.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/moment": "^2.13.0",
"@types/node": "^15.6.0",
"axios": "^0.21.2",
"chalk": "^4.1.1",
"discord.js": "^12.5.3",
"dotenv": "^10.0.0",
"glob": "^7.1.7",
"moment": "^2.29.1",
"nodemon": "^2.0.7",
"tiny-typed-emitter": "^2.0.3",
"ts-node": "^9.1.1"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^8.4.0",
"typescript": "^4.2.4"
}
}