-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.27 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": "hubday-bot",
"version": "0.0.1",
"main": "out/index.js",
"author": "celian-rib - tjobit",
"license": "MIT",
"dependencies": {
"better-logging": "^4.4.0",
"canvas": "^2.6.1",
"canvas-table": "0.0.8",
"discord-slash-commands-client": "^1.1.1",
"discord-webhook-node": "^1.1.8",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"eslint": "^7.21.0",
"glob": "^7.1.6",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"node-fetch": "^2.6.1"
},
"scripts": {
"start": "tsc && node ./out/index.js",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"test": "mocha --exit -r ts-node/register './src/tests/**/*.ts'"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/glob": "^7.1.1",
"@types/mocha": "^8.2.1",
"@types/moment-duration-format": "^2.2.2",
"@types/node": "^11.15.12",
"@types/node-fetch": "^2.5.8",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"chai": "^4.3.3",
"jest": "^26.0.1",
"mocha": "^8.3.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^25.5.0",
"ts-node": "^8.10.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
}
}