-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.37 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": "breadbot",
"version": "0.0.1",
"description": "ACM Discord bot",
"main": "src/index.ts",
"repository": "https://github.com/acmucsd/breadbot.git",
"author": "Stuart6557 <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node build/src/index.js",
"lint": "eslint ./ --ext .ts",
"dev": "tsc && node build/src/index.js",
"hot": "nodemon -e ts --exec \"yarn dev\"",
"lint:fix": "eslint ./ --ext .ts --fix"
},
"dependencies": {
"@discordjs/builders": "^1.6.0",
"@discordjs/core": "^1.0.1",
"@discordjs/rest": "^2.0.1",
"discord-api-types": "^0.37.61",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"got": "11.8.2",
"luxon": "^3.3.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"typescript": "^5.2.2",
"uuid": "^9.0.1",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/got": "^9.6.12",
"@types/luxon": "^3.3.0",
"@types/uuid": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7"
}
}