-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.31 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.31 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
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "explorer",
"private": true,
"type": "module",
"imports": {
"#*": "./src/*",
"#package.json": "./package.json",
"#wrangler.json": "./wrangler.json"
},
"scripts": {
"postinstall": "pnpm gen:types",
"dev": "pnpm dev:testnet",
"dev:devnet": "VITE_TEMPO_ENV='devnet' vite dev --port 3000",
"dev:testnet": "VITE_TEMPO_ENV='testnet' vite dev --port 3000",
"dev:mainnet": "VITE_TEMPO_ENV='mainnet' vite dev --port 3000",
"build": "vite build",
"bundle:analyze": "ANALYZE=true pnpm build && open .sonda/sonda_1.html",
"bundle:analyze:json": "ANALYZE_JSON=true pnpm build",
"bundle:diff": "pnpm node scripts/bundle-diff.ts",
"bundle:save": "pnpm node scripts/bundle-diff.ts --save",
"check": "pnpm check:biome && pnpm check:types",
"check:biome": "biome check --write --unsafe",
"check:types": "tsgo --project tsconfig.json --noEmit",
"check:types:test": "tsc --project tsconfig.test.json --noEmit",
"predeploy": "bash scripts/build.sh",
"deploy": "bash scripts/deploy.sh",
"deploy:devnet": "pnpm deploy --env devnet",
"deploy:testnet": "pnpm deploy --env testnet",
"deploy:mainnet": "pnpm deploy --env mainnet",
"gen:tokens-index": "pnpm node --env-file-if-exists=.env scripts/generate-tokens-index.ts",
"gen:types": "CLOUDFLARE_ENV='mainnet' wrangler types --env-interface='CloudflareBindings' --env-file='.env.example'",
"preview": "vite preview --mode='preview'",
"test": "vitest"
},
"dependencies": {
"@sentry/cloudflare": "catalog:",
"@sentry/react": "catalog:",
"@shazow/whatsabi": "catalog:",
"@shikijs/langs": "catalog:",
"@shikijs/themes": "catalog:",
"@tailwindcss/vite": "catalog:",
"@tanstack/query-async-storage-persister": "catalog:",
"@tanstack/react-query": "catalog:",
"@tanstack/react-query-persist-client": "catalog:",
"@tanstack/react-router": "catalog:",
"@tanstack/react-router-ssr-query": "catalog:",
"@tanstack/react-start": "catalog:",
"@tanstack/router-plugin": "catalog:",
"@tempo/rpc-utils": "workspace:*",
"abitype": "catalog:",
"animejs": "catalog:",
"cva": "catalog:",
"hono": "catalog:",
"idxs": "catalog:",
"midcut": "catalog:",
"ox": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"tailwindcss": "catalog:",
"tidx.ts": "catalog:",
"viem": "catalog:",
"wagmi": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@cloudflare/puppeteer": "catalog:",
"@cloudflare/vite-plugin": "catalog:",
"@cloudflare/vitest-pool-workers": "catalog:",
"@iconify/json": "catalog:",
"@sentry/vite-plugin": "catalog:",
"@svgr/core": "catalog:",
"@svgr/plugin-jsx": "catalog:",
"@tanstack/devtools-vite": "catalog:",
"@tanstack/react-devtools": "catalog:",
"@tanstack/react-query-devtools": "catalog:",
"@tanstack/react-router-devtools": "catalog:",
"@total-typescript/ts-reset": "catalog:",
"@types/animejs": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"eruda": "catalog:",
"rollup-plugin-visualizer": "catalog:",
"shiki": "catalog:",
"sonda": "catalog:",
"tailwind-merge": "catalog:",
"tw-animate-css": "catalog:",
"typed-query-selector": "catalog:",
"unplugin-icons": "catalog:",
"vite": "catalog:",
"vite-plugin-devtools-json": "^1.0.0",
"vitest": "catalog:",
"wrangler": "catalog:"
}
}