-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.18 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
{
"name": "1k-validators-be",
"version": "2.2.29",
"description": "Services for running the Thousand Validator Program.",
"main": "index.js",
"scripts": {
"build": "tsc",
"docker": "docker-compose rm -f; docker-compose build --no-cache; docker-compose up",
"clean": "rm validator.db",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"start": "NODE_OPTIONS='--max-old-space-size=4096' ts-node src/index.ts start",
"js:start": "NODE_OPTIONS='--max-old-space-size=4096' node build/index.js start",
"test": "ava test/*.spec.ts --timeout=10m",
"test:api": "ts-node test/api/chaindata.ts"
},
"author": "Web3 Foundation <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"@koa/router": "^10.0.0",
"@octokit/rest": "^18.0.15",
"@polkadot/api": "^3.7.1",
"@polkadot/keyring": "^5.5.1",
"@types/cron": "^1.7.1",
"@types/koa": "^2.11.7",
"@types/koa-bodyparser": "^4.3.0",
"@types/node": "^14.14.22",
"@types/semver": "^7.3.4",
"@types/ws": "^7.4.0",
"axios": "^0.21.1",
"bs58": "^4.0.1",
"commander": "^7.0.0",
"cron": "^1.8.2",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eventemitter3": "^4.0.7",
"hash.js": "^1.1.7",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa2-cors": "^2.0.6",
"matrix-js-sdk": "^9.5.1",
"mongodb": "^3.6.3",
"mongodb-memory-server": "^6.9.3",
"mongoose": "^5.11.14",
"prettier": "^2.2.1",
"reconnecting-websocket": "^4.4.0",
"semver": "^7.3.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"winston": "^3.3.3",
"ws": "^7.4.2"
},
"devDependencies": {
"@ava/typescript": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"ava": "^3.15.0",
"eslint": "^7.19.0",
"eslint-plugin-security": "^1.4.0"
},
"config": {
"mongodbMemoryServer": {
"debug": "on"
}
},
"ava": {
"failFast": false,
"verbose": true,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}