-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.21 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.21 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
{
"name": "appkit-react-native",
"version": "1.2.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",
"web": "cd apps/native && yarn web",
"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",
"playwright:test": "cd apps/native && yarn playwright:test",
"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": {
"@babel/core": "^7.26.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-flow-strip-types": "^7.26.5",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@coinbase/wallet-mobile-sdk": "1.1.2",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native/babel-preset": "0.76.7",
"@react-native/eslint-config": "0.76.7",
"@react-native/metro-config": "0.76.7",
"@react-native/typescript-config": "0.76.7",
"@testing-library/jest-native": "5.4.3",
"@testing-library/react-native": "13.2.0",
"@types/babel__core": "^7",
"@types/jest": "29.5.7",
"@types/qrcode": "1.5.5",
"@types/react": "18.2.79",
"@walletconnect/react-native-compat": "2.19.1",
"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",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "3.0.1",
"react": "18.3.1",
"react-native": "0.76.7",
"react-native-builder-bob": "0.23.2",
"react-native-modal": "14.0.0-rc.0",
"react-native-svg": "15.8.0",
"react-native-webview": "13.12.5",
"react-test-renderer": "18.3.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tsconfig": "*",
"turbo": "2.1.1",
"typescript": "5.2.2",
"viem": "2.23.10",
"wagmi": "2.14.13"
},
"packageManager": "yarn@4.0.2",
"resolutions": {
"elliptic": "^6.6.1",
"path-to-regexp": "0.1.12",
"ws": "^8.18.1",
"serialize-javascript": "6.0.2",
"esbuild": "0.25.0",
"postcss": "8.4.31",
"cookie": "0.7.0",
"ip": "^2.0.1"
}
}