-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.8 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.8 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
{
"name": "oracle",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"indexer:worker": "node scripts/solana-indexer-worker.mjs",
"test:unit": "node --experimental-strip-types --test --test-isolation=none tests/backend/unit/**/*.test.ts",
"test:integration": "node --experimental-strip-types --test --test-isolation=none tests/backend/integration/**/*.test.ts",
"test:adversarial": "node --experimental-strip-types --test --test-isolation=none tests/backend/adversarial/**/*.test.ts",
"test:matrix": "npm run test:unit && npm run test:integration && npm run test:adversarial",
"audit:backend": "npm audit --omit=dev --audit-level=moderate",
"test:e2e": "playwright test"
},
"dependencies": {
"@arcium-hq/client": "^0.5.2",
"@coral-xyz/anchor": "^0.30.1",
"@linear/sdk": "^77.0.0",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-adapter-phantom": "^0.9.28",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.35",
"@solana/wallet-adapter-solflare": "^0.6.32",
"@solana/web3.js": "^1.92.2",
"@upstash/redis": "1.36.3",
"better-sqlite3": "^11.10.0",
"bn.js": "^5.2.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.2.10",
"next": "15.5.14",
"react": "^18",
"react-dom": "^18",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^20",
"@types/react": "18.2.74",
"@types/react-dom": "18.2.25",
"autoprefixer": "^10.0.1",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.14",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}