-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.78 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "PhilTheYeti",
"version": "17.0.0",
"database_version": "12",
"description": "A Discord bot made specifically for the Official Hijack (Hiccup Haddock/Jack Frost) Discord server",
"main": "main.js",
"author": "ahlec",
"engines": {
"node": "16.x",
"yarn": "1.x"
},
"scripts": {
"start": "heroku local web",
"lint": "eslint \"./{src,scripts}/**/*.{js,ts}\"",
"run-bot": "ts-node -r tsconfig-paths/register ./src/main.ts",
"db-migrate": "node scripts/db-migrate.js"
},
"dependencies": {
"@types/lodash": "^4.14.165",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^14.14.6",
"@types/node-fetch": "^2.5.7",
"@types/pg": "^7.14.6",
"@types/ws": "^7.2.9",
"bufferutil": "^4.0.2",
"chalk": "^4.1.0",
"chrono-node": "1.3.5",
"discord.js": "^12.4.1",
"fuse.js": "^3.4.2",
"lodash": "^4.17.20",
"moment-timezone": "0.5.31",
"node-fetch": "^2.6.1",
"pg": "8.4.2",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.5",
"utf-8-validate": "^5.0.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"countries-and-timezones": "1.0.1",
"countryjs": "1.8.0",
"dotenv": "^8.2.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-promise": "^4.0.1",
"postgrator": "^4.1.1",
"prettier": "^2.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/ahlec/Phil"
},
"keywords": [
"bot",
"discord",
"hijack",
"node",
"hiccup haddock",
"jack frost",
"rotg",
"httyd",
"dreamworks"
],
"license": "MIT",
"prettier": {
"singleQuote": true,
"printWidth": 80,
"trailingComma": "es5"
}
}