-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "better-oh-bot",
"version": "1.0.0",
"description": "A (better) discord bot for managing office hours",
"scripts": {
"lint": "eslint . --ext .ts",
"build": "npx tsc",
"test": "nyc mocha -r ts-node/register test/*.ts",
"start": "node dist/src/app.js"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/google-spreadsheet": "^3.1.5",
"@types/mocha": "^9.0.0",
"@types/y18n": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"mocha": "^9.1.0",
"nyc": "^15.1.0",
"ts-mockito": "^2.6.1",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"ascii-table": "^0.0.9",
"discord-api-types": "^0.22.0",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"google-spreadsheet": "^3.1.15",
"y18n": "^5.0.8"
},
"engines": {"node": "^16.0.0"}
}