-
Notifications
You must be signed in to change notification settings - Fork 522
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.72 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.72 KB
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
118
119
120
{
"name": "keplr",
"description": "Keplr is a browser extension wallet for the Inter blockchain ecosystem.",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"apps/*"
]
},
"scripts": {
"postinstall": "zx ./scripts/post-install.mjs && yarn prepare",
"bootstrap": "lerna bootstrap",
"dev": "lerna run dev --parallel",
"clean": "lerna run clean && rm -rf node_modules && rm -rf build",
"build": "lerna run build",
"build:libs": "lerna run build --ignore @keplr-wallet/extension",
"test": "lerna run test --parallel && zx ./scripts/monorepo-deps-version-check.mjs",
"build:clean": "yarn clean && yarn install --immutable && lerna run build",
"lint-test": "lerna run lint-test",
"lint-fix": "lerna run lint-fix",
"ci": "yarn install --immutable && yarn build && yarn test",
"ci-lint": "yarn install --immutable && yarn lint-test",
"pre-commit": "lint-staged",
"__comment__": "There is a problem that `yarn --immutable` cannot be passed in CI because the yarn.lock file includes the monorepo package version. To solve this, check if there are any problems with the yarn.lock file in \"preversion\" and update the yarn.lock file in \"version\"",
"preversion": "yarn --immutable",
"version": "zx ./scripts/lerna-lifecyle-check-version.mjs && yarn && git add yarn.lock",
"prepare": "husky",
"check:gen": "zx ./scripts/generate-check-tsconfigs.mjs",
"typecheck": "lerna run typecheck"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint",
"prettier --check"
],
"*.mdx": [
"eslint",
"prettier --check"
],
"*.mjs": [
"eslint",
"prettier --check"
],
"*.json": [
"eslint",
"prettier --check"
],
"*.{css,scss,sass}": [
"eslint",
"prettier --check"
]
},
"remarkConfig": {
"plugins": [
"@1stg/remark-preset"
]
},
"keywords": [],
"author": "chainapsis",
"license": "Apache-2.0",
"devDependencies": {
"@1stg/remark-preset": "^2.0.0",
"@octokit/core": "^3.5.1",
"@types/filesystem": "^0.0.32",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@types/react": "^18.2.19",
"@types/react-dom": "^18.2.7",
"@types/react-is": "^18.2.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"bitcoinjs-lib": "^6.1.7",
"cross-env": "^5.2.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^45.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"folder-hash": "^4.0.2",
"husky": "^9.1.7",
"jest": "^29.4.3",
"lerna": "^9.0.3",
"lint-staged": "^10.5.4",
"mobx": "^6.10.0",
"mobx-react-lite": "^3.4.3",
"mobx-utils": "^6.0.8",
"node-gyp": "^11.2.0",
"prettier": "^2.8.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"semver": "^7.6.0",
"starknet": "^8.9.1",
"ts-jest": "^29.0.5",
"typescript": "5.0.4",
"zx": "^4.2.0"
},
"resolutions": {
"@types/react": "^18.2.19",
"@types/react-dom": "^18.2.7",
"@ledgerhq/hw-transport": "^6.35.0",
"@iov/crypto": "2.1.0",
"@walletconnect/jsonrpc-types": "^1.0.4",
"@walletconnect/sign-client": "=2.10.5",
"@walletconnect/types": "=2.10.5",
"axios": "^0.27.2",
"libsodium": "file:./etc/noop",
"libsodium-wrappers": "file:./etc/noop",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"tiny-secp256k1": "^1.1.7"
},
"packageManager": "[email protected]"
}