-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.5 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
56
{
"name": "hoosky-bot",
"version": "0.1.0",
"description": "Custom-built Discord bot for the Northeastern Class of 2025 Discord server",
"scripts": {
"start": "ts-node src/index.ts",
"check": "tsc --noEmit && eslint . && prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nu25/hoosky-bot.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nu25/hoosky-bot/issues"
},
"homepage": "https://github.com/nu25/hoosky-bot#readme",
"dependencies": {
"axios": "^0.21.1",
"csv-parse": "^4.16.0",
"dayjs": "^1.10.6",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"mongodb": "^3.6.9",
"nanoid": "^3.1.23",
"parse-duration": "^1.0.0",
"ts-custom-error": "^3.2.0",
"ws": "^7.4.6",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/lodash": "^4.14.171",
"@types/mongodb": "^3.6.17",
"@types/ws": "^7.4.4",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,json,css,md}": "prettier --write"
}
}