-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
118 lines (118 loc) · 3.58 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "adamant",
"version": "0.8.3",
"description": "ADAMANT Blockchain Node",
"private": true,
"scripts": {
"start": "node app.js",
"start:testnet": "node app.js --config test/config.json --genesis test/genesisBlock.json",
"test:full": "npx grunt test --verbose",
"test:single": "npx mocha",
"test:fast": "npx mocha --exclude test/unit/sql/blockRewards.js --exclude test/api/delegates.js --exclude test/api/peer.transactions.stress.js --exclude test/api/peer.transactions.votes.js test/unit/**/* test/api/**/*",
"test:all": "npx mocha test/unit/**/* test/api/**/*",
"eslint": "npx grunt eslint-nofix --verbose",
"eslint:file": "npx eslint -f visualstudio",
"eslint:fix": "npx eslint -f visualstudio --fix",
"eslint:fixrule": "npx eslint -f visualstudio --no-eslintrc --fix --env browser,node,es2021,commonjs --parser-options=ecmaVersion:12 --rule",
"fetchCoverage": "npx grunt exec:fetchCoverage --verbose",
"jsdoc": "npx jsdoc -c docs/conf.json --verbose --pedantic",
"server-docs": "npx jsdoc && npx http-server docs/jsdoc/"
},
"keywords": [
"adm",
"adamant",
"blockchain",
"messenger",
"messaging",
"decentralization",
"anonymity",
"tor",
"privacy",
"security",
"encryption",
"crypto",
"cryptocurrency",
"dpos"
],
"author": "ADAMANT Foundation <[email protected]>, ADAMANT Tech Labs <[email protected]>, Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"async": "=3.2.5",
"axios": "^0.27.2",
"bignumber.js": "=9.1.2",
"bitcore-mnemonic": "=8.25.36",
"body-parser": "=1.20.2",
"bytebuffer": "=5.0.1",
"change-case": "=4.1.2",
"colors": "=1.4.0",
"commander": "=9.4.0",
"compression": "=1.7.4",
"cors": "=2.8.5",
"ejs": "=3.1.9",
"execa": "^5.1.1",
"express": "=4.18.2",
"express-domain-middleware": "=0.1.0",
"express-query-int": "=3.0.0",
"express-rate-limit": "=6.5.1",
"express-slow-down": "1.4.0",
"extend": "=3.0.2",
"ip": "=1.1.8",
"js-nacl": "^1.4.0",
"json-schema": "=0.4.0",
"json-sql": "./legacy/json-sql",
"lodash": "=4.17.21",
"method-override": "=3.0.0",
"npm": "=8.17.0",
"pg-monitor": "=1.4.1",
"pg-native": "=3.0.1",
"pg-promise": "=10.11.1",
"randomstring": "=1.3.0",
"redis": "=4.6.11",
"rimraf": "=3.0.2",
"semver": "=7.5.4",
"socket.io": "^4.7.2",
"sodium": "^3.0.2",
"sodium-browserify-tweetnacl": "*",
"strftime": "=0.10.2",
"unzipper": "^0.10.14",
"valid-url": "=1.0.9",
"validator.js": "=2.0.4",
"z-schema": "=5.0.3"
},
"devDependencies": {
"chai": "^4.3.10",
"chai-bignumber": "^3.1.0",
"eslint-config-google": "^0.14.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-jsdoc": "^46.9.0",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-obfuscator": "^8.0.0",
"grunt-eslint": "^24.3.0",
"grunt-exec": "^3.0.0",
"jsdoc": "^3.6.11",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"nyc": "^15.1.0",
"nyc-middleware": "^1.0.4",
"sinon": "^14.0.0",
"supertest": "^6.3.3"
},
"overrides": {
"grunt-contrib-obfuscator": {
"javascript-obfuscator": "^4.0.0"
}
},
"config": {
"minVersion": ">=0.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adamant-im/adamant.git"
},
"bugs": {
"url": "https://github.com/Adamant-im/adamant/issues"
},
"homepage": "https://github.com/Adamant-im/adamant#readme"
}