forked from monkeytypegame/monkeytype-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.51 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
48
49
50
51
52
53
54
55
{
"name": "monkey-bot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"run": "node .",
"start": "yarn build && yarn run run",
"dev": "ts-node-dev --enable-source-maps --watch \"./src/config/config.json\" \"./src/index.ts\"",
"pretty": "prettier 'src/**/*.ts'",
"pretty-fix": "prettier --write 'src/**/*.ts'",
"lint": "eslint -c .eslintrc.json 'src/**/*.ts'",
"lint-fix": "eslint --fix -c .eslintrc.json 'src/**/*.ts'",
"quote": "yarn build && node dist/insertQuote.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bullmq": "1.81.1",
"date-fns": "2.28.0",
"discord.js": "13.14.0",
"dotenv": "8.6.0",
"glob": "7.2.0",
"husky": "5.1.1",
"ioredis": "5.0.4",
"lodash": "4.17.21",
"mongodb": "4.1.0",
"node-fetch": "2.6.7",
"openai-api": "1.3.1",
"simple-git": "3.16.0",
"string-similarity": "4.0.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn pretty-fix && yarn lint-fix"
}
},
"devDependencies": {
"@types/async": "3.2.12",
"@types/glob": "7.2.0",
"@types/lodash": "4.14.182",
"@types/string-similarity": "4.0.0",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"nodemon": "2.0.15",
"prettier": "2.6.2",
"ts-node-dev": "2.0.0",
"typescript": "4.8.3"
},
"packageManager": "yarn@3.4.1"
}