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 15
/
package.json
56 lines (56 loc) · 1.59 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
{
"name": "lisk-service-blockchain-connector",
"version": "0.7.7",
"description": "Lisk Service Blockchain Connector",
"keywords": [
"lisk",
"blockchain"
],
"homepage": "https://github.com/LiskHQ/lisk-service",
"repository": {
"type": "git",
"url": "[email protected]:LiskHQ/lisk-service.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-service/issues"
},
"private": true,
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "Apache-2.0",
"main": "app.js",
"engines": {
"node": ">=18.20.2 <=18",
"npm": ">=8.5.0"
},
"scripts": {
"start": "node app.js",
"clean": "rm -rf ./node_modules",
"test": "yarn run test:unit",
"test:unit": "jest --config=jest.config.js --detectOpenHandles --forceExit",
"test:functional": "jest --config=jest.config.functional.js --detectOpenHandles --forceExit"
},
"dependencies": {
"@liskhq/lisk-api-client": "6.0.1",
"@liskhq/lisk-codec": "^0.5.0",
"@liskhq/lisk-cryptography": "4.0.0",
"@liskhq/lisk-transactions": "6.0.0",
"@liskhq/lisk-validator": "0.8.0",
"better-sqlite3": "^7.6.2",
"big-json": "^3.1.0",
"bluebird": "^3.7.2",
"ioredis": "^5.3.2",
"knex": "^2.4.0",
"lisk-service-framework": "https://github.com/LiskHQ/lisk-service/raw/de2ee1ac988ebd2fb150e637647640b25635c6d6/framework/dist/lisk-service-framework-1.6.15.tgz",
"moment": "^2.29.4",
"signals": "^1.0.0",
"tar": "^6.1.11"
},
"devDependencies": {
"@babel/preset-env": "^7.14.0",
"babel-jest": "^27.3.0",
"jest": "^29.7.0",
"jest-when": "^3.5.1",
"moleculer": "^0.14.21",
"node-gyp": "^9.4.0"
}
}