-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.2 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.2 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
{
"name": "onre-app",
"description": "OnRe application to purchase, schedule and redeem tokens",
"private": true,
"version": "0.0.9",
"type": "module",
"packageManager": "pnpm@9.15.4",
"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",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"set-program:dev": "cp ~/.config/solana/devHfQHgiFNifkLW49RCXpyTUZMyKuBNnFSbrQ8XsbX.json target/deploy/onreapp-keypair.json && anchor keys sync && anchor build",
"set-program:test": "cp ~/.config/solana/J24jWEosQc5jgkdPm3YzNgzQ54CqNKkhzKy56XXJsLo2.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",
"script:mainnet-prod": "NETWORK=mainnet-prod tsx",
"script:mainnet-test": "NETWORK=mainnet-test tsx",
"script:mainnet-dev": "NETWORK=mainnet-dev tsx",
"script:devnet-test": "NETWORK=devnet-test tsx",
"script:devnet-dev": "NETWORK=devnet-dev tsx",
"cli": "tsx scripts/cli/index.ts"
},
"dependencies": {
"@coral-xyz/anchor": "^0.32.1",
"@inquirer/prompts": "^7.10.1",
"@metaplex-foundation/mpl-token-metadata": "^3.4.0",
"@noble/ed25519": "^3.0.0",
"@solana/spl-token": "0.4.14",
"@solana/web3.js": "^1.98.2",
"bs58": "^6.0.0",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"clipboardy": "^5.0.2",
"commander": "^12.1.0",
"date-fns": "^4.1.0",
"ethers": "^6.15.0",
"jotai": "^2.16.0",
"ora": "^8.2.0",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/node": "^22.10.5",
"dotenv": "^16.5.0",
"litesvm": "0.4.0",
"prettier": "^3.5.2",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.0",
"zx": "^8.6.0"
}
}