This repository was archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 KB
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
{
"name": "winhacks22-bot",
"version": "1.0.0",
"description": "Discord.JS Bot for Winhacks 2022",
"main": "index.ts",
"repository": "git@github.com:WinHacks/2022-bot.git",
"author": "kilbouri <kilbouri@uwindsor.ca>",
"license": "MIT",
"private": false,
"scripts": {
"start": "ts-node ./src/index.ts",
"start-pretty": "ts-node ./src/index.ts | pino-pretty"
},
"prettier": {
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "es5",
"bracketSpacing": false,
"arrowParens": "always",
"endOfLine": "lf",
"printWidth": 90
},
"eslintConfig": {
"node": true,
"es6": true
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@discordjs/builders": "^0.11.0",
"@discordjs/rest": "^0.2.0-canary.0",
"@types/node": "^17.0.8",
"discord.js": "^13.5.0",
"googleapis": "^92.0.0",
"json5": "^2.2.0",
"mongodb": "^4.3.0",
"pino": "^7.6.2",
"readline": "^1.3.0",
"shutdown-handler": "^1.0.1",
"systeminformation": "^5.11.8"
}
}