-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 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
{
"name": "fee-payer",
"type": "module",
"private": true,
"imports": {
"#*": "./src/*",
"#package.json": "./package.json",
"#wrangler.json": "./wrangler.json"
},
"scripts": {
"build": "vite build",
"check": "pnpm check:biome && pnpm check:types",
"check:biome": "biome check --write .",
"check:types": "tsgo --project tsconfig.json --noEmit",
"dev": "vite dev",
"dev:playground": "pnpm --filter fee-payer-playground dev",
"deploy": "wrangler deploy",
"deploy:mainnet": "wrangler deploy --env mainnet",
"deploy:privy": "wrangler deploy --env privy",
"format": "biome format --write .",
"gen:types": "CLOUDFLARE_ENV= wrangler types --env-interface='CloudflareBindings' --env-file='.env.example'",
"tail": "wrangler tail",
"test": "vitest --run",
"test:watch": "vitest",
"test:moderato": "TEMPO_ENV=moderato vitest --run",
"test:testnet": "TEMPO_ENV=moderato vitest --run",
"postinstall": "pnpm gen:types"
},
"dependencies": {
"@hono/zod-validator": "catalog:",
"hono": "catalog:",
"idxs": "catalog:",
"kysely": "catalog:",
"ox": "catalog:",
"tempo.ts": "catalog:",
"viem": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@cloudflare/vite-plugin": "catalog:",
"@cloudflare/vitest-pool-workers": "catalog:",
"@cloudflare/workers-types": "catalog:",
"@types/node": "catalog:",
"dotenv": "catalog:",
"prool": "catalog:",
"testcontainers": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"wrangler": "catalog:"
}
}