This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 458
/
Copy pathpackage.json
88 lines (88 loc) · 2.76 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": "lisk-framework",
"version": "0.12.0",
"description": "Lisk blockchain application platform",
"author": "Lisk Foundation <admin@lisk.com>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
"keywords": [
"cryptocurrency",
"blockchain",
"lisk",
"nodejs",
"javascript"
],
"homepage": "https://github.com/LiskHQ/lisk-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LiskHQ/lisk-sdk.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-sdk/issues"
},
"engines": {
"node": ">=18.12.0 <=18",
"npm": ">=8.1.0"
},
"main": "dist-node/index.js",
"scripts": {
"start": "node src/index.js",
"start:test:app": "node test/test_app",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"format": "prettier --write '**/*'",
"test": "jest --config=./test/unit/jest.config.js",
"test:ci": "jest --config=./test/unit/jest.config.js --coverage=true --coverage-reporters=json",
"test:coverage": "jest --config=./test/unit/jest.config.js --coverage=true --coverage-reporters=text",
"copy-static-files": "copyfiles -u 1 src/**/*.d.ts ./dist-node",
"prebuild": "rm -r dist-node/* || mkdir dist-node || true",
"build": "tsc && npm run copy-static-files",
"test:unit": "jest --config=./test/unit/jest.config.js --coverage=true --coverage-reporters=json --verbose",
"test:integration": "jest --config=./test/integration/jest.config.js --force-exit",
"test:functional": "jest --config=./test/functional/jest.config.js --runInBand"
},
"dependencies": {
"@chainsafe/blst": "0.2.9",
"@liskhq/lisk-api-client": "^6.1.0",
"@liskhq/lisk-chain": "^0.6.0",
"@liskhq/lisk-codec": "^0.5.0",
"@liskhq/lisk-cryptography": "^4.1.0",
"@liskhq/lisk-db": "0.3.7",
"@liskhq/lisk-p2p": "^0.10.0",
"@liskhq/lisk-transaction-pool": "^0.8.0",
"@liskhq/lisk-transactions": "^6.1.0",
"@liskhq/lisk-tree": "^0.5.0",
"@liskhq/lisk-utils": "^0.4.0",
"@liskhq/lisk-validator": "^0.9.0",
"bunyan": "1.8.15",
"debug": "4.3.4",
"eventemitter2": "6.4.9",
"fs-extra": "11.1.0",
"prom-client": "14.2.0",
"ps-list": "7.2.0",
"sodium-native": "3.2.1",
"ws": "8.11.0",
"zeromq": "6.0.0-beta.6"
},
"devDependencies": {
"@liskhq/lisk-passphrase": "^4.1.0",
"@types/bunyan": "1.8.6",
"@types/jest": "29.2.3",
"@types/jest-when": "3.5.2",
"@types/node": "18.15.3",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"axios": "1.6.0",
"copyfiles": "2.2.0",
"eslint": "8.28.0",
"eslint-config-lisk-base": "2.0.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.6",
"jest": "29.3.1",
"jest-extended": "3.2.0",
"jest-when": "3.5.2",
"prettier": "2.8.0",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "5.0.2"
}
}