-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "root",
"license": "MIT",
"type": "module",
"scripts": {
"postinstall": "patch-package",
"test": "vitest run --silent=false --coverage --no-file-parallelism --no-isolate --pool=threads",
"clean": "nx reset && lerna clean --yes && lerna exec -- rimraf build/ dist/ cache/",
"build": "lerna run build --concurrency 1",
"build-tsc": "tsc -p",
"deploy": "yarn build && lerna publish",
"deploy:ci": "lerna publish from-package --yes",
"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/encoding": "0.32.4",
"@cosmjs/proto-signing": "0.32.4",
"@cosmjs/stargate": "0.32.4",
"@cosmjs/tendermint-rpc": "0.32.4"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/eslint__js": "^8.42.3",
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.30",
"@vitest/coverage-v8": "^2.0.3",
"cosmjs-types": "^0.9.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.4.5",
"lerna": "^8.1.6",
"nx": "^19.4.3",
"patch-package": "^8.0.0",
"rimraf": "^6.0.1",
"typedoc": "^0.26.4",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1",
"typescript-json-schema": "^0.64.0",
"vitest": "^2.0.3"
},
"version": "1.0.1",
"packageManager": "[email protected]"
}