-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.83 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
{
"name": "root",
"license": "MIT",
"private": true,
"scripts": {
"postinstall": "patch-package",
"test": "jest",
"docs": "typedoc --entryPointStrategy expand --name 'Bitcoin Bridge SDK' --readme none --tsconfig packages/contracts-sdk/tsconfig.json packages/contracts-sdk/src",
"clean": "lerna clean --yes && lerna exec -- rimraf build/ dist/ cache/",
"dev": "lerna run dev",
"build": "lerna run build --concurrency 1",
"build-tsc": "tsc -p",
"deploy": "yarn build && lerna publish",
"prepare": "husky install",
"build:docker": "lerna run build --concurrency 1",
"integration:setup": "yarn run:regtest && yarn run:oraid",
"integration:clean": "yarn clean:regtest && yarn clean:oraid",
"integration:run": "jest --testPathPattern=integrations --forceExit",
"integration:all": "npm run integration:clean; npm run integration:setup; npm run integration:run; npm run integration:clean",
"run:regtest": "bitcoind -regtest -server -rpcuser=satoshi -rpcpassword=nakamoto --fallbackfee=0.001 --daemon --datadir=$HOME",
"run:oraid": "sh $PWD/scripts/single-local-node.sh",
"clean:regtest": "killall bitcoind; rm -rf $HOME/regtest",
"clean:oraid": "killall oraid; rm -rf $HOME/oraid"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.18.0"
},
"dependencies": {
"@cosmjs/amino": "0.32.1",
"@cosmjs/cosmwasm-stargate": "0.32.4",
"@cosmjs/crypto": "0.32.4",
"@cosmjs/proto-signing": "0.32.1",
"@cosmjs/stargate": "0.32.4",
"@cosmjs/tendermint-rpc": "0.32.4",
"@oraichain/oraidex-common": "^1.0.10",
"cors": "^2.8.5",
"helmet": "^8.0.0",
"http": "^0.0.1-security",
"http-status": "^2.0.0",
"joi": "^17.13.3",
"os": "^0.1.2",
"readline-sync": "^1.4.10",
"regtest-client": "^0.2.1",
"winston": "^3.14.2",
"winston-transport-discord": "^1.0.3",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@babel/traverse": "7.24.1",
"@cosmjs/encoding": "0.31.3",
"@swc/core": "^1.4.11",
"@swc/jest": "^0.2.36",
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.30",
"@types/readline-sync": "^1",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"cosmjs-types": "0.8.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-security": "^2.1.1",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lerna": "^8.1.8",
"nx": "19.5.7",
"patch-package": "^8.0.0",
"rimraf": "^5.0.5",
"typedoc": "0.25.12",
"typescript": "5.5.4",
"vitest": "^2.0.5"
},
"version": "1.0.1",
"packageManager": "[email protected]"
}