forked from onre-finance/onre-sol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.66 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.66 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
{
"name": "onre-app",
"description": "OnRe application to purchase, schedule and redeem tokens",
"private": true,
"version": "0.0.9",
"type": "module",
"scripts": {
"anchor": "cd anchor && anchor",
"anchor-build": "cd anchor && anchor build && mkdir -p ../tests/fixtures && cp target/deploy/onreapp.so ../tests/fixtures/",
"anchor-localnet": "cd anchor && anchor localnet",
"anchor-test": "cd anchor && anchor test",
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"set-program:dev": "cp ~/.config/solana/devHfQHgiFNifkLW49RCXpyTUZMyKuBNnFSbrQ8XsbX.json target/deploy/onreapp-keypair.json && anchor keys sync && anchor build",
"set-program:test": "cp ~/.config/solana/onreapp-keypair-test-program.json target/deploy/onreapp-keypair.json && anchor keys sync && anchor build",
"set-program:prod": "cp ~/.config/solana/onreuGhHHgVzMWSkj2oQDLDtvvGvoepBPkqyaubFcwe.json target/deploy/onreapp-keypair.json && anchor keys sync && anchor build",
"transfer-usdc-v2": "tsx scripts/cross_chain_transfer/cctp_v2/transfer-v2.ts"
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.1",
"@metaplex-foundation/mpl-token-metadata": "^3.4.0",
"@noble/ed25519": "^3.0.0",
"@solana/spl-token": "0.4.12",
"@solana/wallet-adapter-base": "^0.9.24",
"@solana/wallet-adapter-react": "0.15.36",
"@solana/wallet-adapter-react-ui": "0.9.36",
"@solana/web3.js": "^1.98.2",
"@sqds/multisig": "^2.1.3",
"@tabler/icons-react": "^3.31.0",
"@tanstack/react-query": "^5.68.0",
"bs58": "^6.0.0",
"date-fns": "^4.1.0",
"ethers": "^6.14.1",
"jotai": "^2.9.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-helmet-async": "^2.0.5",
"react-hot-toast": "^2.5.2",
"react-router": "^7.3.0",
"styled-components": "^6.1.16",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"anchor-bankrun": "^0.5.0",
"borsh": "^2.0.0",
"dotenv": "^16.5.0",
"esbuild": "0.25.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.5.2",
"solana-bankrun": "^0.4.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"unplugin-fonts": "^1.3.1",
"vite": "^6.2.0",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-tsconfig-paths": "^5.1.4",
"zx": "^8.6.0"
},
"overrides": {
"react-helmet-async": {
"react": "^19.0.0"
},
"anchor-bankrun": {
"@coral-xyz/anchor": "^0.31.1"
}
}
}