-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.35 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
{
"name": "anvil",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"types:generate": "wrangler types --env-file .dev.vars.example",
"typecheck": "npm run types:generate && tsc -p tests/tsconfig.json --noEmit",
"db:generate:d1": "drizzle-kit generate --config=drizzle-d1.config.ts",
"db:generate:project-do": "drizzle-kit generate --config=drizzle-project-do.config.ts",
"db:generate:run-do": "drizzle-kit generate --config=drizzle-run-do.config.ts",
"db:generate:durable": "npm run db:generate:project-do && npm run db:generate:run-do",
"db:generate": "npm run db:generate:d1 && npm run db:generate:durable",
"db:migrate:d1": "wrangler d1 migrations apply anvil-db --remote",
"db:migrate:d1:local": "wrangler d1 migrations apply anvil-db --local",
"db:seed-initial-user": "node --import tsx scripts/seed-bootstrap-invite.ts",
"test:integration:queue": "vitest run -c vitest.integration.config.ts tests/integration/queue-runner-happy-path.test.ts",
"test:integration:workflows": "vitest run -c vitest.integration.config.ts tests/integration/workflows-runner-happy-path.test.ts",
"test:e2e": "npx playwright test -c tests/e2e/playwright.config.ts",
"deploy": "npm run db:migrate:d1 && npm run build && wrangler deploy",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@ansi-tools/parser": "^1.0.15",
"@cloudflare/sandbox": "^0.8.4",
"@cloudflare/util-en-garde": "^8.0.13",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.10",
"lucide-react": "^1.7.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.14.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.31.0",
"@cloudflare/vitest-pool-workers": "^0.14.1",
"@playwright/test": "^1.59.1",
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"drizzle-kit": "^0.31.4",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2",
"wrangler": "^4.80.0"
}
}