-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
106 lines (106 loc) · 2.69 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"private": true,
"scripts": {
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node -r source-map-support/register build/main.js",
"doc": "node docma.js",
"lint": "eslint src"
},
"dependencies": {
"@sentry/node": "^5.27.3",
"@types/deep-equal": "^1.0.1",
"apollo-server": "^2.19.0",
"apollo-server-koa": "^2.19.0",
"better-cleverbot-io": "^1.0.2",
"blocked": "^1.3.0",
"blocked-at": "^1.2.0",
"canvas": "^2.6.1",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.3",
"chess": "^0.4.5",
"chrono-node": "^2.1.11",
"cli-table2": "^0.2.0",
"deep-equal": "^2.0.4",
"deepmerge": "^1.5.2",
"ebml": "^3.0.0",
"eris": "github:abalabahaha/eris#dev",
"eris-errors": "^1.0.1",
"esm": "^3.2.25",
"eventemitter3": "^4.0.7",
"git-rev": "^0.2.1",
"google": "^2.1.0",
"google-images": "^2.0.0",
"googleapis": "^66.0.0",
"graphql": "^14.7.0",
"graphql-relay": "^0.6.0",
"i10010n": "^0.4.3",
"koa": "^2.13.0",
"longjohn": "^0.2.12",
"mcping-js": "^1.5.0",
"minecraft-jsonapi": "0.0.3",
"node-fetch": "^2.6.1",
"performance-now": "^2.1.0",
"pokedex-promise-v2": "^3.2.0",
"pvpclient": "^1.1.5",
"request": "^2.88.2",
"rethinkdbdash": "^2.3.31",
"stream-resume": "0.0.6",
"superagent": "^6.1.0",
"universal-analytics": "^0.4.23",
"uuid": "^8.3.1",
"youtube-dl": "^3.5.0",
"ytdl-core": "^4.0.3"
},
"devDependencies": {
"@sentry/types": "^5.27.3",
"@types/blocked": "^1.3.0",
"@types/git-rev": "^0.2.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.7",
"@types/node-fetch": "^2.5.7",
"@types/request": "^2.48.5",
"@types/rethinkdbdash": "git+https://github.com/typed-typings/rethinkdbdash.git",
"@types/universal-analytics": "^0.4.4",
"@types/ws": "^7.4.0",
"@types/youtube-dl": "^3.0.1",
"docma": "^2.1.0",
"eslint": "^7.13.0",
"jest-cli": "^26.6.3",
"jsdoc": "^3.6.6",
"jsdoc-strip-async-await": "^0.1.0",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=12"
},
"jest": {
"testEnvironment": "node",
"preset": "ts-jest"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"complexity": [
"error",
20
],
"no-prototype-builtins": "off",
"no-unused-vars": "off",
"no-extra-semi": "off"
},
"env": {
"node": true,
"es6": true
}
}
}