forked from slothpixel/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.3 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
{
"name": "slothpixel-core",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"start": "node index",
"test": "mocha --exit",
"build": "npm install",
"lint": "eslint . --ext .js,.jsx --fix",
"lintnofix": "eslint . --ext .js,.jsx"
},
"dependencies": {
"@sentry/node": "^6.12.0",
"@sentry/tracing": "^5.29.0",
"async": "^3.2.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"filter-obj": "^2.0.1",
"got": "^11.8.1",
"graphql": "^15.5.0",
"hypixelconstants": "^3.3.7",
"ioredis": "^5.1.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"nock": "^12.0.3",
"pify": "^5.0.0",
"pm2": "^4.5.1",
"request-ip": "^2.1.3",
"skyblock-parser": "0.2.11",
"universalify": "^2.0.0",
"uuid": "^8.2.0",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"mocha": "^7.2.0",
"supertest": "^6.0.1"
},
"engines": {
"node": ">=16"
},
"jshintConfig": {
"esversion": 10
}
}