-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.82 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": "@cloudflare/telescope-web",
"private": true,
"type": "module",
"version": "0.0.1",
"description": "Telescope web UI — Astro + Cloudflare Workers app for viewing test results. Not published to npm.",
"scripts": {
"dev": "cross-env CLOUDFLARE_ENV=development astro dev",
"dev:setup": "./scripts/dev-setup.sh",
"dev:clean": "rm -rf .wrangler .env dist node_modules",
"cf-typegen": "wrangler types",
"build:development": "cross-env CLOUDFLARE_ENV=development astro build",
"build:staging": "cross-env CLOUDFLARE_ENV=staging astro build",
"preview": "astro preview",
"migrate:development": "npx wrangler d1 migrations apply telescope-db-development --local --env development",
"migrate:staging": "npx wrangler d1 migrations apply telescope-db-staging --remote --env staging",
"deploy:development": "npm run build:development && wrangler deploy --env development",
"deploy:staging": "npm run build:staging && wrangler deploy --env staging",
"generate": "prisma generate",
"studio": "prisma studio",
"test": "vitest run",
"test:ui": "playwright test -c playwright.config.ts"
},
"dependencies": {
"@astrojs/cloudflare": "^14.1.4",
"@astrojs/react": "^6.0.1",
"@phosphor-icons/react": "^2.1.10",
"@prisma/adapter-d1": "^7.5.0",
"@prisma/client": "^7.5.0",
"@vitest/coverage-v8": "^4.1.8",
"astro": "^7.1.3",
"fflate": "^0.8.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"vitest": "^4.1.8",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"playwright": "^1.61.1",
"cross-env": "^10.1.0",
"dotenv": "^17.2.4",
"prisma": "^7.9.1",
"wrangler": "^4.123.0"
},
"engines": {
"node": ">=24",
"npm": ">=11.9.0"
}
}