-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
package.json
64 lines (64 loc) · 2.08 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
{
"private": true,
"name": "@thesharks/wildbeast",
"version": "8.1.0",
"description": "Discord bot",
"main": "dist/index.js",
"scripts": {
"start": "node --enable-source-maps -r dotenv/config dist/index.js",
"start:plain": "node --enable-source-maps -r dotenv/config dist/entry.js",
"test": "eslint src/**/*.ts",
"lint": "eslint src/**/*.ts --fix",
"compile": "rimraf dist/ && tsc",
"prepare": "npm run compile",
"migrations:create": "node -r ts-node/register -e 'require(\"./src/database/migrations\").cli(\"create\")'",
"migrations:up": "node -r dotenv/config -e 'require(\"./dist/database/migrations\").cli(\"up\")'",
"migrations:down": "node -r dotenv/config -e 'require(\"./dist/database/migrations\").cli(\"down\")'"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com/TheSharks/WildBeast.git"
},
"author": "Remco Jongschaap <hey@dougley.com>",
"contributors": [
"Curtis Fowler <caf203@gmail.com>",
"Linus Willner <hello@linuswillner.me>",
"Pierce Harriz <pierce.harriz@gmail.com>"
],
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/TheSharks/WildBeast/issues"
},
"engines": {
"node": ">=14.17"
},
"homepage": "https://wildbeast.guide/",
"devDependencies": {
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"discord-api-types": "^0.36.3",
"eslint": "^8.20.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@elastic/elasticsearch": "^8.2.1",
"@sentry/integrations": "^7.8.0",
"@sentry/node": "^7.8.0",
"@thesharks/jagtag-js": "^2.0.0",
"chalk": "^4.1.2",
"date-fns": "^2.29.1",
"deepmerge": "^4.2.2",
"detritus-client": "^0.17.0-beta.1",
"dotenv": "^16.0.1",
"fast-glob": "^3.2.11",
"intl-messageformat": "^10.1.1",
"postgres": "^3.2.4",
"tslib": "^2.4.0"
}
}