-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
87 lines (87 loc) · 2.54 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
{
"name": "@aresrpg/aresrpg",
"version": "1.0.0",
"description": "AresRPG is a Minecraft MMORPG Server",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node --experimental-json-modules -r dotenv/config src/index.js | pino-human",
"debug": "node --experimental-json-modules -r dotenv/config --expose-gc --inspect=0.0.0.0 src/index.js | pino-human",
"lint": "eslint . && prettier . --check && npm run typecheck",
"typecheck": "tsc --build",
"format": "prettier . --write && eslint . --fix",
"rendermedia": "mmdc -c media/mermaid.json -i media/flow.mermaid -o media/flow.svg",
"generate:metadata": "node script/entity_metadata.js",
"test": "NODE_NO_WARNINGS=1 LOG_LEVEL='silent' node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aresrpg/aresrpg.git"
},
"keywords": [
"aresrpg",
"mmorpg",
"minecraft"
],
"author": "AresRPG's Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/aresrpg/aresrpg/issues"
},
"homepage": "https://github.com/aresrpg/aresrpg#readme",
"dependencies": {
"@aresrpg/aresrpg-map-colors": "3.1.0",
"@fastify/cors": "8.3.0",
"@xmldom/xmldom": "0.8.10",
"canvas": "2.11.2",
"dotenv": "16.3.1",
"fast-merge-async-iterators": "^1.0.5",
"fastify": "4.21.0",
"graphql": "16.7.1",
"ioredis": "5.3.2",
"iterator-helper": "1.3.4",
"javascript-color-gradient": "2.4.4",
"minecraft-data": "3.41.0",
"minecraft-protocol": "1.43.2",
"node-fetch": "3.3.2",
"pino": "8.14.2",
"prismarine-provider-anvil": "2.7.0",
"pusher-js": "8.3.0",
"uuid-1345": "1.0.2",
"vec3": "0.1.8"
},
"devDependencies": {
"@babel/core": "7.22.9",
"@babel/eslint-parser": "7.22.9",
"@babel/plugin-syntax-import-assertions": "7.22.5",
"@hydre/pino-human": "1.3.0",
"@mermaid-js/mermaid-cli": "10.2.4",
"@types/node": "20.4.5",
"cheerio": "1.0.0-rc.12",
"eslint": "8.46.0",
"eslint-config-prettier": "8.9.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"husky": "^4.3.8",
"lint-staged": "13.2.3",
"mineflayer": "4.10.1",
"prettier": "3.0.0",
"typescript": "5.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
}
}