-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 988 Bytes
/
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
{
"name": "penny",
"version": "1.0.0",
"description": "Pennybot but in TypeScript",
"main": "index.ts",
"scripts": {
"start": "tsc && node out/index.js",
"lint": "prettier . --check",
"fmt": "prettier . --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": "Lilwiggy, PixeL, NCPlayz",
"license": "MIT",
"dependencies": {
"@types/node": "^14.0.25",
"@types/node-fetch": "^2.5.7",
"@types/node-schedule": "^1.3.0",
"db-migrate-pg": "^1.2.2",
"detritus-client": "^0.16.3",
"eris": "^0.13.3",
"moment": "^2.27.0",
"node-fetch": "^2.6.1",
"node-schedule": "^1.3.2",
"pg-promise": "^10.5.8",
"youtube-search": "^1.1.6",
"ytdl-core": "^3.1.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"husky": "^7.0.2",
"lint-staged": "^10.2.11",
"prettier": "2.0.5",
"typescript": "^3.9.7"
}
}