aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 5d08932c9832d190d1ab607cc9a4bfd2c29d78b5 (plain)
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
{
  "name": "skyblock-api",
  "version": "1.0.0",
  "description": "Wrapper for the Hypixel SkyBlock API",
  "main": "index.ts",
  "scripts": {
    "test": "mocha",
    "generate-test-data": "node --experimental-specifier-resolution=node --loader ts-node/esm ./test-data-generator/index.ts",
    "compile": "tsc",
    "watch": "tsc -w",
    "start": "npm i --only=prod && node --trace-warnings build/index.js"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mat-1/skyblock-api.git"
  },
  "keywords": [
    "hypixel",
    "minecraft",
    "hypixel",
    "skyblock"
  ],
  "author": "mat",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/mat-1/skyblock-api/issues"
  },
  "homepage": "https://github.com/mat-1/skyblock-api#readme",
  "dependencies": {
    "express": "^4.18.1",
    "express-rate-limit": "^6.4.0",
    "lru-cache": "^7.10.1",
    "mongodb": "^4.7.0",
    "node-cache": "^5.1.2",
    "prismarine-nbt": "^2.2.1",
    "prom-client": "^14.0.1",
    "queue-promise": "^2.2.1",
    "typed-hypixel-api": "^1.5.0",
    "undici": "^5.3.0",
    "uuid": "^8.3.2"
  },
  "devDependencies": {
    "@types/express": "^4.17.13",
    "@types/lru-cache": "^7.4.0",
    "@types/mocha": "^9.1.0",
    "@types/node": "^17.0.21",
    "dotenv": "^16.0.0",
    "mocha": "^9.2.1",
    "nodemon": "^2.0.18",
    "ts-node": "^10.7.0",
    "typescript": "^4.6.3"
  },
  "type": "module"
}