-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.84 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
{
"name": "@alien-worlds/leaderboard-api-history-tools",
"version": "0.0.1",
"description": "",
"packageManager": "[email protected]",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"test:unit": "jest --config=jest.config.unit.js",
"clean": "rm -rf ./build",
"build": "yarn clean && tsc -b",
"build:prod": "yarn clean && tsc --project tsconfig.build.json",
"broadcast": "node build/broadcast/index.js",
"boot": "node build/bootstrap/index.js",
"reader": "node build/reader/index.js",
"filter": "node build/filter/index.js",
"processor": "node build/processor/index.js",
"leaderboard-writer": "node build/leaderboard-writer/index.js",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"format-check": "prettier --check \"src/\"",
"format": "prettier --write \"src/\""
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.4.5",
"prettier": "^2.7.1",
"ts-jest": "^27.1.3",
"typescript": "^4.8.2"
},
"dependencies": {
"@alien-worlds/aw-api-common-atomicassets": "^0.0.8",
"@alien-worlds/aw-api-common-leaderboard": "^0.0.21",
"@alien-worlds/aw-contract-notify-world": "^0.0.1",
"@alien-worlds/aw-history-starter-kit": "^0.0.10",
"@alien-worlds/aw-storage-redis": "^0.0.7",
"@types/cron": "^2.0.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/ms": "^0.7.31",
"commander": "^9.4.1",
"cron": "^2.3.0",
"jsonwebtoken": "^9.0.0",
"ms": "^2.1.3",
"nanoid": "3",
"reflect-metadata": "^0.1.13",
"ws": "^8.14.2"
}
}