-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.63 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
{
"name": "tenor",
"private": true,
"packageManager": "yarn@1.22.19",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:web": "next build",
"build:program": "anchor build",
"start": "next start",
"start:web": "next start",
"test": "anchor test --skip-local-validator",
"test:ts": "ts-mocha -p ./tsconfig.json -t 1000000 tests/tenor.ts",
"test:day3": "bash scripts/start_local_validator.sh && ts-mocha -p ./tsconfig.json -t 1000000 tests/day3.ts",
"test:day4": "bash scripts/start_local_validator.sh && ts-mocha -p ./tsconfig.json -t 1000000 tests/day4.ts",
"test:day5": "bash scripts/start_local_validator.sh && ts-mocha -p ./tsconfig.json -t 1000000 tests/day5.ts tests/race_program.ts",
"test:day6": "bash scripts/start_local_validator.sh && ts-mocha -p ./tsconfig.json -t 1000000 tests/day6.ts",
"test:day7": "bash scripts/start_local_validator.sh && ts-mocha -p ./tsconfig.json -t 1000000 tests/day7.ts",
"test:unit": "ts-mocha -p ./tsconfig.json -t 100000 tests/unit/**/*.ts",
"test:integration": "bash scripts/start_local_validator.sh && ts-mocha -p ./tsconfig.json -t 1000000 tests/integration/day1_7.ts",
"test:all": "yarn test:unit && yarn test:ts && yarn test:day3 && yarn test:day4 && yarn test:day5 && yarn test:day6 && yarn test:day7 && yarn test:integration",
"test:race": "bash scripts/start_local_validator.sh && ts-mocha -p ./tsconfig.json -t 1000000 tests/race_program.ts",
"test:local-validator": "bash scripts/start_local_validator.sh",
"test:day2": "bash scripts/start_local_validator.sh && yarn test:ts",
"lint": "prettier --check \"**/*.{ts,tsx,js,json,md}\"",
"crank": "tsx crank/index.ts",
"bots": "tsx bots/runner.ts",
"oracle:sync": "env -u PROVIDER_ENDPOINT tsx scripts/sync_pyth_oracle.ts",
"oracle:dump-guardians": "tsx scripts/dump_wormhole_guardians.ts",
"oracle:er": "tsx scripts/oracle_er.ts",
"fund:usdc": "tsx scripts/fund_demo_usdc.ts",
"e2e:tee": "tsx scripts/e2e_tee.ts",
"race:metrics": "tsx scripts/race_metrics.ts",
"probe:cross-read": "tsx scripts/probe_per_cross_read.ts",
"reset-demo": "tsx scripts/reset_demo.ts",
"demo:worker": "tsx scripts/demo_worker.ts",
"initialize-venue": "tsx scripts/initialize_venue.ts",
"tee-token": "tsx scripts/get_tee_token.ts",
"read-oracle": "tsx scripts/read_oracle.ts"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@magicblock-labs/ephemeral-rollups-sdk": "^0.16.2",
"@magicblock-labs/gum-sdk": "^3.0.10",
"@pythnetwork/price-service-client": "^1.11.0",
"@pythnetwork/pyth-solana-receiver": "^0.16.0",
"@solana/spl-token": "^0.4.14",
"@solana/wallet-adapter-phantom": "^0.9.29",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.35",
"@solana/web3.js": "^1.95.3",
"@xyflow/react": "^12.11.2",
"bs58": "^6.0.0",
"dotenv": "^16.4.5",
"framer-motion": "^11.18.2",
"gsap": "^3.15.0",
"lenis": "^1.3.26",
"next": "^14.2.30",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.15.1",
"rpc-websockets": "7.11.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@magicblock-labs/ephemeral-validator": "^0.13.19",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^24.3.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.20",
"chai": "^4.5.0",
"mocha": "^11.7.1",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.17",
"ts-mocha": "^11.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.22.0",
"typescript": "^5.8.3"
}
}