forked from ainblockchain/ain-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·88 lines (88 loc) · 2.96 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
85
86
87
88
{
"name": "ain-blockchain",
"description": "AI Network Blockchain",
"version": "0.3.1",
"private": true,
"license": "MIT",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/ainblockchain/ain-blockchain"
},
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "sh stop_servers.sh & echo 'cleaned'",
"tracker": "npm run clean & node ./tracker-server/index.js",
"client": "NUM_VALIDATORS=1 ACCOUNT_INDEX=0 HOSTING_ENV=local DEBUG=true node ./client/index.js",
"test_state_util": "./node_modules/mocha/bin/mocha --timeout 160000 unittest/state-util.test.js",
"test_db": "./node_modules/mocha/bin/mocha --timeout 160000 unittest/db.test.js",
"test_unit": "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 160000 integration/sharding.test.js",
"test_integration": "./node_modules/mocha/bin/mocha --timeout 160000 \"integration/**/*.test.js\"",
"loadtest": "sh loadtest/load_tester.sh"
},
"dependencies": {
"@ainblockchain/ain-util": "^1.1.6",
"@google-cloud/logging-winston": "^3.0.5",
"ajv": "^5.5.2",
"axios": "^0.20.0",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"crypto": "^1.0.1",
"crypto-js": "^3.1.9-1",
"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.19",
"moment": "^2.24.0",
"node-cron": "^2.0.3",
"node-natural-sort": "^0.8.7",
"ntpsync": "^0.2.3",
"object-sizeof": "^1.5.1",
"public-ip": "^3.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"rimraf": "^2.6.3",
"secp256k1": "^3.7.0",
"seedrandom": "^2.4.4",
"semver": "^6.3.0",
"shuffle-seed": "^1.1.6",
"sleep": "^6.3.0",
"url": "^0.11.0",
"util": "^0.11.1",
"uuid": "^3.3.2",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.4.2",
"ws": "^6.1.2",
"zip-local": "^0.3.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.5.1",
"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": "^6.2.2",
"mocha-param": "^2.0.0",
"nock": "^12.0.0",
"semistandard": "^12.0.1",
"shelljs": "^0.8.3",
"sync-request": "^6.1.0",
"system-sleep": "^1.3.6"
}
}