-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"dependencies": {
"@typeit/discord": "^4.0.9",
"@types/random-words": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"airtable": "^0.10.1",
"airtable-plusplus": "^0.3.2",
"chalk": "^4.1.0",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"eslint": "^7.23.0",
"jshint": "^2.12.0",
"nekos.life": "^2.0.7",
"nodemon": "^2.0.7",
"rword": "^3.2.0",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"name": "scribehacksbot",
"version": "0.1",
"description": "The Discord Bot for ScribeHacks",
"main": "src/main.discord.ts",
"repository": "https://github.com/ScribeHacks/Hackathon-Bot.git",
"author": "KaiDevrim <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"start": "ts-node src/main.discord.ts",
"lint": "eslint . --ext .ts --fix",
"build": "tsc",
"prod": "node build/main.discord.js",
"prepare": "husky install",
"setup": "yarn install && husky install && git update-index --assume-unchanged .env && yarn lint"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/eslint-parser": "^7.13.14",
"@types/node": "^14.14.31",
"husky": "^6.0.0"
}
}