forked from w3f/1k-validators-be
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.18 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.18 KB
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
{
"name": "1k-validators-be",
"version": "1.2.23",
"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 <teched@web3.foundation>",
"license": "GPL-3.0",
"dependencies": {
"@octokit/rest": "^18.0.0",
"@polkadot/api": "^1.24.1",
"@polkadot/keyring": "^2.18.1",
"@types/cron": "^1.7.1",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/nedb": "^1.8.10",
"@types/node": "^14.0.23",
"@types/semver": "^7.3.1",
"@types/ws": "^7.2.6",
"bs58": "^4.0.1",
"commander": "^5.1.0",
"cron": "^1.8.2",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.4",
"hash.js": "^1.1.7",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa2-cors": "^2.0.6",
"matrix-js-sdk": "^7.1.0",
"mongodb": "^3.5.9",
"mongodb-memory-server": "^6.6.1",
"mongoose": "^5.9.24",
"nedb": "lasalvavida/nedb#stream-large-files",
"prettier": "^2.0.4",
"reconnecting-websocket": "^4.4.0",
"semver": "^7.3.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"winston": "^3.3.3",
"ws": "^7.3.1"
},
"devDependencies": {
"@ava/typescript": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"ava": "^3.10.1",
"eslint": "^7.4.0",
"eslint-plugin-security": "^1.4.0"
},
"config": {
"mongodbMemoryServer": {
"debug": "on"
}
},
"ava": {
"failFast": false,
"verbose": true,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}