-
Notifications
You must be signed in to change notification settings - Fork 196
/
package.json
117 lines (117 loc) · 4.38 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@injectivelabs/injective-ts",
"version": "0.0.1",
"main": "index.js",
"private": "true",
"license": "Apache-2.0",
"author": "@InjectiveLabs",
"repository": "https://github.com/InjectiveLabs/injective-ts",
"workspaces": {
"packages": [
"packages/*",
"packages/wallets/*"
]
},
"scripts": {
"postinstall": "node etc/bootstrapEnv",
"build": "node etc/bootstrapEnv && lerna run build",
"generate:core-proto-ts": "./proto/core/gen.sh",
"publish:core-proto-ts": "./proto/core/publish.sh",
"generate:indexer-proto-ts": "./proto/indexer/gen.sh",
"publish:indexer-proto-ts": "./proto/indexer/publish.sh",
"generate:mito-proto-ts": "./proto/mito/gen.sh",
"publish:mito-proto-ts": "./proto/mito/publish.sh",
"generate:olp-proto-ts": "./proto/olp/gen.sh",
"publish:olp-proto-ts": "./proto/olp/publish.sh",
"generate:abacus-proto-ts": "./proto/abacus/gen.sh",
"publish:abacus-proto-ts": "./proto/abacus/publish.sh",
"build:docs": "yarn typedoc",
"lerna:publish:prerelease": "lerna publish --conventional-commits --conventional-prerelease",
"lerna:publish": "lerna publish patch",
"build:watch": "node etc/bootstrapEnv && lerna run build:watch",
"build:fresh": "yarn clean-up && yarn build",
"build:publish": "yarn build:fresh && yarn lerna:publish",
"build:publish:prerelease": "yarn build:fresh && yarn lerna:publish:prerelease",
"build:patch:publish": "yarn build:fresh && yarn patch && yarn lerna:publish",
"patch": "lerna version patch",
"clean-up": "lerna run clean && shx rm -rf .build-cache *.log coverage junit.xml",
"bootstrap": "yarn clean-up && yarn install",
"test": "jest",
"test:sdk-ts:core:stargate": "jest ./packages/sdk-ts/src/core/stargate",
"test:sdk-ts:core:modules": "jest ./packages/sdk-ts/src/core/modules",
"test:sdk-ts:core": "jest ./packages/sdk-ts/src/core",
"test:sdk-ts:utils": "jest ./packages/sdk-ts/src/utils",
"test:sdk-ts:client": "jest ./packages/sdk-ts/src/client",
"test:ci": "jest --coverage --ci --reporters='jest-junit'",
"coverage": "jest --coverage",
"coverage:unit": "yarn test:unit --coverage",
"coverage:integration": "yarn test:integration --coverage",
"coverage:show": "live-server coverage",
"lint": "eslint -c './.eslintrc.js' './packages/**/*.{ts,js}'",
"lint:ci": "yarn lint . --format junit",
"lint:md": "markdownlint --ignore node_modules --ignore .git",
"format": "yarn lint --fix",
"format:md": "yarn lint:md --fix",
"husky-skip": "cross-env HUSKY_SKIP_HOOKS=1",
"commit": "git cz"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,d.ts}": [
"eslint --fix"
],
"*.md": [
"yarn format:md"
]
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/preset-env": "^7.19.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^29.4.0",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.4.3",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^29.4.3",
"jest-junit": "^15.0.0",
"jest-resolve": "^29.7.0",
"lerna": "6.6.1",
"lint-staged": "^11.1.2",
"live-server": "^1.2.1",
"markdownlint-cli": "^0.28.1",
"prettier": "^2.4.1",
"serve": "^12.0.1",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "2.0.0",
"tsc-alias": "^1.7.0",
"tsc-esm-fix": "^3.1.2",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.25.11",
"typedoc-monorepo-link-types": "^0.0.4",
"typescript": "^5.1.1"
},
"resolutions": {
"@ethereumjs/tx": "^4.1.1",
"**/libsodium": "npm:@bangjelkoski/noop",
"**/libsodium-wrappers": "npm:@bangjelkoski/noop"
}
}