-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.47 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
{
"name": "keplr",
"description": "Keplr is a browser extension wallet for the Inter blockchain ecosystem.",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@react-native-*/**",
"**/react-native",
"**/react-native/**",
"**/*-react-native",
"**/react-native-*",
"**/@react-navigation/**",
"**/expo-*",
"**/@unimodules/**",
"**/unimodules-*",
"**/native-base",
"**/@react-native-async-storage/async-storage",
"**/@ledgerhq/react-native-hw-transport-ble",
"**/jetifier"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"dev": "lerna run dev --parallel",
"clean": "lerna run clean; rm -rf node_modules",
"build": "lerna run build",
"build:libs": "lerna run build --ignore @keplr-wallet/extension",
"test": "lerna run test --parallel",
"build:clean": "yarn clean && yarn install --frozen-lockfile && lerna run build",
"lint-test": "lerna run lint-test",
"lint-fix": "lerna run lint-fix",
"ci": "yarn install --frozen-lockfile && yarn build && yarn test",
"ci-lint": "yarn install --frozen-lockfile && yarn lint-test",
"ci-publish": "yarn clean && yarn install --frozen-lockfile && lerna run build --ignore @keplr-wallet/extension && lerna publish from-git --yes",
"pre-commit": "lint-staged"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*": [
"eslint",
"prettier --check"
]
},
"keywords": [],
"author": "chainapsis",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^16.6.2",
"@types/webpack": "^4.39.1",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"cross-env": "^5.2.0",
"eslint": "^6.2.2",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"eslint-plugin-unicorn": "^24.0.0",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"lint-staged": "^10.5.4",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"resolutions": {
"@types/react": "^16.14.4",
"@cosmjs/crypto": "^0.24.0-alpha.25",
"@iov/crypto": "2.1.0",
"libsodium": "file:./etc/noop",
"libsodium-wrappers": "file:./etc/noop"
}
}