-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
69 lines (66 loc) · 2.78 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
{
"name": "xlnfinance",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "rm -rf local-storage;mocha -r ts-node/register 'src/test/**/*.ts' --timeout 30000 --exit",
"test:user": "rm -rf local-storage;mocha -r ts-node/register src/test/user.test.ts --timeout 10000 --exit",
"test:channel": "rm -rf local-storage;mocha -r ts-node/register src/test/channel.test.ts --timeout 10000 --exit",
"test:directpayment": "rm -rf local-storage;mocha -r ts-node/register src/test/directpayment.test.ts --timeout 30000 --exit",
"test:onionpayment": "rm -rf local-storage;mocha -r ts-node/register src/test/onionpayment.test.tts --timeout 20000 --exit",
"test:high": "rm -rf local-storage;mocha -r ts-node/register src/test/highload.test.ts --timeout 80000 --exit",
"test:swap": "rm -rf local-storage;mocha -r ts-node/register src/test/swap.test.ts --timeout 20000 --exit",
"test:network": "rm -rf local-storage;mocha -r ts-node/register src/test/network.test.ts --timeout 10000 --exit",
"test:transition": "mocha -r ts-node/register src/test/transition.test.ts --timeout 10000 --exit",
"test:section": "mocha -r ts-node/register src/test/section.test.ts --timeout 60000 --exit",
"test:derive": "mocha -r ts-node/register src/test/derive.test.ts --timeout 10000 --exit",
"t2": "tsc && ts-node src/test/derive.test.ts",
"build": "tsc",
"watch": "tsc --watch",
"env:build": "cd ./contracts && npx hardhat compile",
"env:run": "cd ./contracts && npx hardhat node",
"env:deploy": "cd ./contracts && npx hardhat ignition deploy ignition/modules/Depository.ts --network localhost",
"format": "prettier --write ./src",
"check": "prettier --check ./src",
"lint": "eslint ./src"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@tsconfig/node20": "^20.1.4",
"@types/blessed": "^0.1.25",
"@types/node": "^20.13.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"chai-as-promised": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"hardhat": "^2.22.5",
"mocha": "^10.7.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"eciesjs": "^0.4.7",
"ethers": "^6.13.1",
"inquirer": "^10.0.4",
"jest": "^29.7.0",
"js-sha3": "^0.9.3",
"level": "^8.0.1",
"pino": "^9.3.1",
"pino-pretty": "^11.2.1",
"ws": "^8.17.0",
"xlnfinance-contracts": "file:contracts"
}
}