-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.34 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.34 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
{
"name": "contracts",
"version": "0.0.1",
"type": "module",
"imports": {
"#*": "./src/*",
"#database/*": "./database/*",
"#openapi.json": "./openapi.json",
"#package.json": "./package.json",
"#wrangler.json": "./wrangler.json"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "pnpm check:biome && pnpm check:types",
"check:biome": "biome check --write --unsafe",
"check:types": "tsgo --project tsconfig.json --noEmit",
"vitest": "vitest",
"test": "vitest --run",
"tail": "wrangler tail",
"db:push": "drizzle-kit push --config='drizzle.config.ts'",
"db:studio": "drizzle-kit studio --config='drizzle.config.ts'",
"db:migrate": "drizzle-kit migrate --config='drizzle.config.ts'",
"db:prepare:local": "CI=1 pnpm exec wrangler d1 migrations apply CONTRACTS_DB --local",
"db:prepare:remote": "CI=1 pnpm exec wrangler d1 migrations apply CONTRACTS_DB --remote",
"db:seed": "node ./scripts/precompile-seed/index.ts",
"db:seed:local": "pnpm db:prepare:local && pnpm db:seed",
"db:seed:remote": "pnpm db:prepare:remote && pnpm db:seed",
"gen:types": "wrangler types --env-interface='CloudflareBindings' --env-file='.env.example'"
},
"dependencies": {
"@cloudflare/containers": "^0.2.3",
"@hono/zod-validator": "catalog:",
"@logtape/config": "catalog:",
"@logtape/drizzle-orm": "catalog:",
"@logtape/hono": "catalog:",
"@logtape/logtape": "catalog:",
"@logtape/pretty": "catalog:",
"@logtape/redaction": "catalog:",
"@wagmi/core": "catalog:",
"cbor-x": "^1.6.4",
"drizzle-orm": "^0.45.2",
"hono": "catalog:",
"hono-rate-limiter": "catalog:",
"ox": "catalog:",
"semver": "^7.7.4",
"viem": "catalog:",
"wagmi": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@cloudflare/vite-plugin": "catalog:",
"@cloudflare/vitest-pool-workers": "catalog:",
"@cloudflare/workers-types": "catalog:",
"@total-typescript/ts-reset": "catalog:",
"@types/bun": "^1.3.11",
"@types/node": "catalog:",
"@types/semver": "^7.7.1",
"@vitest/coverage-istanbul": "4.1.0",
"@vitest/ui": "catalog:",
"dotenv": "catalog:",
"drizzle-kit": "^0.31.10",
"esbuild": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vite-plugin-devtools-json": "catalog:",
"vitest": "catalog:",
"wrangler": "catalog:"
},
"license": "MIT"
}