-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.83 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.83 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
{
"name": "ak-rn-monorepo",
"version": "2.0.1",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"workspaces": [
"packages/core",
"packages/appkit",
"packages/ui",
"packages/common",
"packages/ethers",
"packages/solana",
"packages/bitcoin",
"packages/wagmi",
"packages/coinbase",
"apps/*"
],
"scripts": {
"gallery": "turbo run dev:gallery",
"start": "cd apps/native && yarn start",
"android": "cd apps/native && yarn android",
"ios": "cd apps/native && yarn ios",
"web": "cd apps/native && yarn web",
"watchman:clean": "watchman shutdown-server && watchman watch-del-all",
"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 || true)",
"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:prepublish:ci": "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",
"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.1",
"@changesets/cli": "2.29.5",
"@coinbase/wallet-mobile-sdk": "1.1.2",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-community/netinfo": "11.4.1",
"@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.21.5",
"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.8.0",
"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.40.13",
"react-native-get-random-values": "^1.11.0",
"react-native-svg": "15.8.0",
"react-test-renderer": "18.3.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tsconfig": "*",
"turbo": "2.5.5",
"typescript": "5.2.2",
"viem": "2.31.3",
"wagmi": "2.15.6"
},
"packageManager": "[email protected]",
"resolutions": {
"@babel/helpers": "7.28.2",
"cross-spawn": "7.0.6",
"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",
"form-data": "3.0.4",
"sha.js": "2.4.12",
"@walletconnect/universal-provider": "2.21.10",
"@metamask/sdk": "0.33.1",
"tmp": "0.2.4",
"h3": "1.15.5",
"tar": "7.5.8",
"node-forge": "1.3.2",
"qs": "6.14.2",
"undici": "6.23.0",
"preact": "10.28.2",
"js-yaml": "3.14.2",
"valibot": "1.2.0",
"schema-utils/ajv": "8.18.0",
"lodash": "4.17.23",
"webpack": "5.104.1"
}
}