-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.91 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
{
"name": "root",
"license": "MIT",
"scripts": {
"postinstall": "patch-package",
"test": "vitest",
"docs": "typedoc --entryPointStrategy expand --name 'Ton Bridge Contract SDK' --readme none --tsconfig packages/contracts-sdk/tsconfig.json packages/contracts-sdk/src",
"clean": "lerna clean --yes && lerna exec -- rimraf build/ dist/ cache/",
"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"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.18.0"
},
"dependencies": {
"@cosmjs/amino": "0.32.4",
"@cosmjs/cosmwasm-stargate": "0.32.4",
"@cosmjs/crypto": "0.32.4",
"@cosmjs/proto-signing": "0.32.4",
"@cosmjs/stargate": "0.32.4",
"@cosmjs/tendermint-rpc": "0.32.4",
"@oraichain/common": "^1.0.6",
"buffer": "^6.0.3"
},
"devDependencies": {
"@babel/traverse": "7.24.1",
"@cosmjs/encoding": "0.31.3",
"@oraichain/cw-simulate": "^2.8.98",
"@swc/core": "^1.4.11",
"@swc/jest": "^0.2.36",
"@types/chai": "4.3.16",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.30",
"@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.0.11",
"lerna": "^8.1.2",
"nx": "18.1.2",
"patch-package": "^8.0.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.25.12",
"typescript": "5.3.2",
"vitest": "^2.0.5"
},
"version": "1.0.1",
"packageManager": "[email protected]"
}