-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.01 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
{
"name": "elytra",
"version": "0.0.1",
"description": "Efficient scalable Minecraft server",
"main": "index.js",
"repository": "[email protected]:dannytech/Elytra.git",
"author": "Daniel Hellstern <[email protected]>",
"license": "GPL-3.0-or-later",
"type": "module",
"scripts": {
"start": "npm run build && node dist/index.js",
"dev": "tsc-watch --incremental --noClear --onSuccess 'node dist/index.js'",
"build": "npm run parser && tsc",
"build:ci": "npm run parser:ci && tsc --sourceMap false",
"test": "c8 ava",
"test:ci": "c8 --reporter lcov ava --tap | tap-xunit",
"lint": "eslint .",
"lint:ci": "eslint --format junit $(circleci tests glob \"src/**/*.ts\" | circleci tests split)",
"parser": "peggy --plugin ./node_modules/ts-pegjs/dist/tspegjs --cache -o src/game/chat/ChatComponentParser.ts src/game/chat/ChatComponentParser.peg",
"parser:ci": "peggy --plugin ./node_modules/ts-pegjs/dist/tspegjs -o src/game/chat/ChatComponentParser.ts src/game/chat/ChatComponentParser.peg"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"axios": "^1.6.0",
"colors": "^1.4.0",
"dotenv-extended": "^2.8.0",
"graphql": "^16.8.1",
"graphql-type-json": "^0.3.2",
"graphql-upload": "^16.0.2",
"graphql-yoga": "^5.0.0",
"joi": "^17.9.1",
"reflect-metadata": "^0.1.13",
"rethinkdb-ts": "^2.6.0",
"type-graphql": "^2.0.0-beta.3",
"uuid": "^8.1.0",
"yaml": "^2.2.2"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/graphql-upload": "^16.0.5",
"@types/node": "^20.9.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"ava": "^5.2.0",
"c8": "^7.13.0",
"eslint": "^8.17.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"peggy": "^3.0.2",
"tap-xunit": "^2.4.1",
"ts-node": "^8.10.2",
"ts-pegjs": "^4.1.1",
"tsc-watch": "^5.0.3",
"typescript": "^5.2.2"
}
}