forked from ainblockchain/ain-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.11 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
{
"name": "ain-blockchain",
"description": "AI Network Blockchain",
"version": "0.7.3",
"private": true,
"license": "MIT",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/ainblockchain/ain-blockchain"
},
"engines": {
"node": ">=12"
},
"scripts": {
"clean": "sh stop_servers.sh & echo 'cleaned'",
"tracker": "npm run clean & node ./tracker-server/index.js",
"client": "ACCOUNT_INDEX=0 DEBUG=true node ./client/index.js",
"test_chain_util": "./node_modules/mocha/bin/mocha --timeout 160000 unittest/chain-util.test.js",
"test_state_util": "./node_modules/mocha/bin/mocha --timeout 160000 unittest/state-util.test.js",
"test_block_pool": "MIN_NUM_VALIDATORS=1 ./node_modules/mocha/bin/mocha --timeout 160000 unittest/block-pool.test.js",
"test_db": "MIN_NUM_VALIDATORS=1 ./node_modules/mocha/bin/mocha --timeout 160000 unittest/db.test.js",
"test_unit": "MIN_NUM_VALIDATORS=1 ./node_modules/mocha/bin/mocha --timeout 160000 \"unittest/*.test.js\"",
"test_node": "./node_modules/mocha/bin/mocha --timeout 160000 integration/node.test.js",
"test_blockchain": "./node_modules/mocha/bin/mocha --timeout 160000 integration/blockchain.test.js",
"test_dapp": "./node_modules/mocha/bin/mocha --timeout 160000 integration/afan_dapp.test.js",
"test_sharding": "./node_modules/mocha/bin/mocha --timeout 320000 integration/sharding.test.js",
"test_integration": "./node_modules/mocha/bin/mocha --timeout 640000 \"integration/*.test.js\"",
"test_tx_pool": "MIN_NUM_VALIDATORS=1 ./node_modules/mocha/bin/mocha --timeout 160000 unittest/tx-pool.test.js",
"loadtest": "sh loadtest/load_tester.sh",
"lint": "eslint --ext js -c .eslintrc.json ."
},
"dependencies": {
"@ainblockchain/ain-util": "^1.1.6",
"@google-cloud/logging-winston": "^4.0.2",
"ajv": "^5.5.2",
"axios": "^0.21.1",
"bluebird": "^3.5.3",
"diskusage": "^1.1.3",
"elliptic": "^6.4.1",
"escape-string-regexp": "^2.0.0",
"express": "^4.17.1",
"fast-json-stable-stringify": "^2.0.0",
"geoip-lite": "^1.3.8",
"glob": "^7.1.4",
"ip": "^1.1.5",
"jayson": "^3.1.1",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"natural-orderby": "^2.0.3",
"node-cron": "^2.0.3",
"ntpsync": "^0.2.3",
"object-sizeof": "^1.5.1",
"public-ip": "^3.2.0",
"request": "^2.88.0",
"rimraf": "^2.6.3",
"secp256k1": "^3.7.0",
"seedrandom": "^2.4.4",
"semver": "^6.3.0",
"shuffle-seed": "^1.1.6",
"url": "^0.11.0",
"util": "^0.11.1",
"uuid": "^3.4.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.4.2",
"ws": "^6.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.13.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.2.1",
"nock": "^12.0.0",
"semistandard": "^12.0.1",
"shelljs": "^0.8.3",
"sync-request": "^6.1.0"
}
}