generated from coral-xyz/xnft-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
112 lines (112 loc) · 4.01 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
{
"name": "sns-manager",
"version": "1.0.2",
"private": true,
"homepage": ".",
"scripts": {
"build:xnft": "XNFT=true expo export:web",
"build:web": "WEB=true expo export:web && cp _headers web-build/",
"build:mobile:preview:local": "eas build -p android --profile preview --local",
"build:mobile:prod": "eas build -p android --profile production",
"build:mobile:prod:local": "eas build -p android --profile production --local",
"build:mobile:prod:solana-store": "eas build -p android --profile solana-store",
"start": "npm run build:xnt && npx xnft web",
"bundle": "npm run build:xnft && npx xnft bundle",
"dev": "GENERATE_SOURCEMAP=false expo start --clear --web & npx xnft --iframe http://localhost:19006",
"dev:xnft": "XNFT=true npm run dev",
"dev:web": "WEB=true npm run dev",
"dev:mobile": "expo start --dev-client --clear",
"dev:mobile:build": "eas build --profile development --platform android --local",
"extract": "lingui extract",
"compile": "lingui compile",
"format": "npx prettier --write src/**/*.{ts,tsx}",
"prepare": "chmod +x ./prepare.sh && ./prepare.sh"
},
"main": "./src/App",
"dependencies": {
"@adraffy/ens-normalize": "1.9.0",
"@bonfida/name-offers": "0.2.2",
"@bonfida/name-tokenizer": "0.1.0",
"@bonfida/sns-emitter": "0.2.2",
"@bonfida/sns-react": "2.1.0",
"@bonfida/sns-records": "0.0.1",
"@bonfida/spl-name-service": "2.5.0",
"@coral-xyz/common-public": "0.2.0-latest.3375",
"@expo-google-fonts/dev": "*",
"@expo/html-elements": "0.5.1",
"@expo/vector-icons": "13.0.0",
"@lingui/cli": "4.6.0",
"@lingui/macro": "4.6.0",
"@lingui/react": "4.6.0",
"@pythnetwork/client": "2.19.0",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-clipboard/clipboard": "1.12.1",
"@react-navigation/bottom-tabs": "6.5.11",
"@react-navigation/native": "6.1.9",
"@react-navigation/native-stack": "6.9.17",
"@react-navigation/stack": "6.3.20",
"@solana-mobile/mobile-wallet-adapter-protocol": "2.1.1",
"@solana-mobile/mobile-wallet-adapter-protocol-web3js": "2.1.1",
"@solana/buffer-layout": "4.0.1",
"@solana/spl-token": "0.3.9",
"@solana/wallet-adapter-base": "0.9.23",
"@solana/wallet-adapter-react": "0.15.35",
"@solana/wallet-adapter-react-ui": "0.9.34",
"@solana/web3.js": "1.87.6",
"@tanstack/react-query": "^5.18.1",
"axios": "1.6.7",
"buffer": "6.0.3",
"expo": "49.0.18",
"expo-blur": "~12.4.1",
"expo-constants": "~14.4.2",
"expo-dev-client": "~2.4.12",
"expo-image-picker": "~14.3.2",
"expo-linear-gradient": "~12.3.0",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"lodash": "4.17.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-overlay": "6.0.11",
"react-native": "0.72.6",
"react-native-dotenv": "3.4.9",
"react-native-error-boundary": "1.2.3",
"react-native-gesture-handler": "~2.12.0",
"react-native-get-random-values": "1.9.0",
"react-native-heroicons": "3.2.0",
"react-native-modalfy": "3.4.0",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"react-native-web": "~0.19.6",
"recoil": "*",
"twrnc": "*",
"use-latest-callback": "0.1.7"
},
"devDependencies": {
"@babel/core": "7.21.3",
"@bonfida/prettier-config": "^1.0.0",
"@expo/webpack-config": "^19.0.0",
"@types/lodash": "4.14.201",
"@types/react": "~18.2.14",
"@types/react-native-dotenv": "0.2.0",
"babel-plugin-macros": "3.1.0",
"babel-plugin-transform-inline-environment-variables": "0.4.4",
"commander": "9.4.1",
"husky": "6.0.0",
"jszip": "3.10.1",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"typescript": "^5.1.3",
"uuid": "*",
"xnft": "latest"
},
"overrides": {
"react-error-overlay": "6.0.11"
},
"volta": {
"node": "20.9.0"
},
"prettier": "@bonfida/prettier-config"
}