-
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) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.17 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": "torcida-pulse",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Torcida Pulse — spoiler-safe TxLINE World Cup replay with momentum cards and Solana devnet provenance.",
"engines": {
"node": "^20.19.0 || >=22.12.0",
"npm": ">=10"
},
"scripts": {
"dev": "node --env-file-if-exists=.env --import tsx server/index.ts --dev",
"dev:client": "vite",
"build": "npm run typecheck && vite build && tsc -p tsconfig.server.json",
"typecheck": "tsc --noEmit",
"start": "node server-dist/server/index.js",
"preview": "npm run start",
"test": "vitest run",
"test:e2e": "VITE_LEGENDARY_REVEAL_MS=2650 npm run build && playwright test",
"test:security": "node scripts/security-audit.mjs",
"test:watch": "vitest",
"smoke": "node scripts/smoke.mjs",
"check:replay-manifest": "node scripts/check-replay-manifest.mjs",
"check:submission-packets": "node scripts/check-submission-packets.mjs",
"smoke:deployed": "node scripts/smoke-deployed.mjs",
"smoke:real": "npm run build && npm run check:replay-manifest && node scripts/real-txline-smoke.mjs",
"smoke:real:env": "npm run build && npm run check:replay-manifest && node --env-file=.env scripts/real-txline-smoke.mjs",
"smoke:real:browser:env": "npm run build && npm run check:replay-manifest && node --env-file=.env scripts/real-browser-smoke.mjs",
"preflight:subscription": "node scripts/preflight-txline-subscription.mjs",
"verify": "npm test && npm run check:replay-manifest && npm run check:submission-packets && npm run test:e2e && npm run test:security && npm run smoke",
"sync:idl": "node scripts/sync-official-idl.mjs"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@playwright/test": "^1.61.1",
"@types/bn.js": "5.2.0",
"@types/node": "^26.1.1",
"tsx": "^4.20.5",
"typescript": "^5.5.4",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"dependencies": {
"@coral-xyz/anchor": "^0.32.1",
"@metaplex-foundation/mpl-core": "^1.10.0",
"@metaplex-foundation/umi": "^1.5.1",
"@metaplex-foundation/umi-bundle-defaults": "^1.5.1",
"@solana/web3.js": "^1.98.4",
"bn.js": "5.2.5"
}
}