-
Notifications
You must be signed in to change notification settings - Fork 459
/
package.json
113 lines (113 loc) · 3.39 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
{
"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",
"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"
},
"pre-commit": [
"pre-commit"
],
"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",
"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",
"jest": "^29.4.3",
"lerna": "^3.22.1",
"lint-staged": "^10.5.4",
"mobx": "^6.10.0",
"mobx-react-lite": "^3.4.3",
"mobx-utils": "^6.0.8",
"node-gyp": "^9.3.1",
"pre-commit": "^1.2.2",
"prettier": "^2.8.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"semver": "^7.6.0",
"starknet": "=6.11.0",
"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",
"@iov/crypto": "2.1.0",
"@walletconnect/jsonrpc-types": "^1.0.4",
"axios": "^0.27.2",
"libsodium": "file:./etc/noop",
"libsodium-wrappers": "file:./etc/noop",
"react-is": "^18.2.0"
},
"packageManager": "[email protected]"
}