-
-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.67 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.67 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
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
{
"name": "adamant",
"version": "0.9.0",
"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 --trace-uncaught",
"test:unit": "npx mocha test/unit/* --trace-uncaught",
"test:unit:fast": "npx mocha test/unit/* --exclude test/unit/logic/blockReward.js --exclude test/unit/sql/blockRewards.js --trace-uncaught",
"test:api": "npx mocha test/api/* --trace-uncaught",
"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/**/*",
"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",
"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 <devs@adamant.im>, ADAMANT Tech Labs <devs@adamant.im>, Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "GPL-3.0",
"dependencies": {
"async": "=3.2.6",
"axios": "^1.10.0",
"bignumber.js": "=9.3.1",
"bitcore-mnemonic": "=10.10.7",
"body-parser": "=2.2.0",
"bytebuffer": "=5.0.1",
"change-case": "^5.4.4",
"colors": "=1.4.0",
"commander": "=14.0.0",
"compression": "=1.8.1",
"cors": "=2.8.5",
"ejs": "=3.1.10",
"execa": "^9.6.0",
"express": "=5.1.0",
"express-domain-middleware": "=0.1.0",
"express-rate-limit": "=7.5.0",
"express-slow-down": "2.1.0",
"extend": "=3.0.2",
"js-nacl": "^1.4.0",
"json-schema": "=0.4.0",
"knex": "^3.1.0",
"lodash": "=4.17.21",
"method-override": "=3.0.0",
"neoip": "^3.0.1",
"npm": "=11.4.2",
"pg-monitor": "=3.0.0",
"pg-native": "=3.5.2",
"pg-promise": "=11.15.0",
"randomstring": "=1.3.1",
"redis": "=5.6.0",
"rimraf": "=6.0.1",
"semver": "=7.7.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"sodium": "^3.0.2",
"sodium-browserify-tweetnacl": "*",
"strftime": "=0.10.3",
"unzipper": "^0.12.3",
"valid-url": "=1.0.9",
"validator.js": "=2.0.4",
"z-schema": "=6.0.2"
},
"devDependencies": {
"chai": "^5.2.1",
"chai-bignumber": "^3.1.0",
"eslint-config-google": "^0.14.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-jsdoc": "^51.4.1",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-obfuscator": "^8.0.0",
"grunt-eslint": "^25.0.0",
"grunt-exec": "^3.0.0",
"jsdoc": "^4.0.4",
"mocha": "^11.7.1",
"moment": "^2.30.1",
"sinon": "^21.0.0",
"supertest": "^7.1.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"
}