-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
76 lines (76 loc) · 2.6 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
{
"name": "appkit-react-native",
"version": "1.0.2",
"private": true,
"workspaces": [
"packages/core",
"packages/ui",
"packages/common",
"packages/wallet",
"packages/scaffold-utils",
"packages/scaffold",
"packages/siwe",
"packages/wagmi",
"packages/coinbase-wagmi",
"packages/auth-wagmi",
"packages/auth-ethers",
"packages/coinbase-ethers",
"packages/ethers5",
"packages/ethers",
"apps/*"
],
"scripts": {
"gallery": "turbo run dev:gallery",
"android": "cd apps/native && yarn android",
"ios": "cd apps/native && yarn ios",
"build": "turbo build",
"build:gallery": "turbo run build:gallery",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --check .",
"test": "turbo run test --parallel",
"clean": "turbo clean && rm -rf node_modules && watchman watch-del-all",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore",
"changeset:prepublish": "yarn run clean; yarn install; yarn version:update; yarn run lint && yarn run prettier; yarn run build; yarn run test;",
"changeset:publish": "yarn run changeset:prepublish; yarn run changeset publish",
"changeset:version": "changeset version; yarn run version:update; yarn install --refresh-lockfile",
"version:update": "./scripts/bump-version.sh"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@coinbase/wallet-mobile-sdk": "1.0.13",
"@react-native-async-storage/async-storage": "1.24.0",
"@react-native/babel-preset": "0.74.85",
"@react-native/eslint-config": "0.74.85",
"@react-native/metro-config": "0.74.85",
"@react-native/typescript-config": "0.74.85",
"@testing-library/jest-native": "5.4.2",
"@testing-library/react-native": "12.2.0",
"@types/jest": "29.5.7",
"@types/qrcode": "1.5.5",
"@types/react": "^18.2.6",
"@walletconnect/react-native-compat": "2.17.2",
"babel-jest": "^29.7.0",
"eslint": "^8.46.0",
"eslint-plugin-ft-flow": "2.0.3",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-valtio": "^0.6.4",
"jest": "29.7.0",
"prettier": "3.0.1",
"react": "18.2.0",
"react-native": "0.74.3",
"react-native-builder-bob": "0.23.2",
"react-native-modal": "13.0.1",
"react-native-svg": "15.4.0",
"react-native-webview": "13.10.5",
"react-test-renderer": "18.2.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tsconfig": "*",
"turbo": "2.1.1",
"typescript": "5.2.2",
"viem": "2.21.37",
"wagmi": "2.12.25"
},
"packageManager": "yarn@4.0.2"
}