-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.64 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.64 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
{
"name": "@fireproof/dashboard-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"backend:deno": "deno run --unstable-sloppy-imports --allow-net --allow-read --allow-ffi --allow-env --env-file=.env.local backend/deno-serve.js",
"backend:d1": "wrangler dev -c wrangler.toml --port 7370",
"deploy:cf": "wrangler deploy -c wrangler.toml",
"build": "core-cli tsc && pnpm run build:vite",
"build:vite": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "echo vitest --run",
"format": "prettier --config ../../.prettierrc .",
"check": "pnpm format --write && core-cli tsc --noEmit && pnpm lint && pnpm test && pnpm build",
"drizzle:libsql": "drizzle-kit push --config ../backend/drizzle.libsql.config.ts",
"drizzle:d1-local": "drizzle-kit push --config ../backend/drizzle.d1-local-backend.config.ts",
"drizzle:d1-remote": "drizzle-kit push --config ../backend/drizzle.d1-remote.config.ts",
"d1:update-tenant-ledgers:dev": "wrangler d1 execute fp-connect-dev --remote --command \"UPDATE Tenants SET maxLedgers=$MAX_LEDGERS WHERE tenantId='$TENANT_ID'\"",
"d1:update-tenant-ledgers:staging": "wrangler d1 execute fp-connect-staging --remote --command \"UPDATE Tenants SET maxLedgers=$MAX_LEDGERS WHERE tenantId='$TENANT_ID'\"",
"d1:update-tenant-ledgers:prod": "wrangler d1 execute fp-connect-production --remote --command \"UPDATE Tenants SET maxLedgers=$MAX_LEDGERS WHERE tenantId='$TENANT_ID'\"",
"pack": "echo dashboard need not to pack",
"publish": "echo skip"
},
"dependencies": {
"@adviser/cement": "^0.5.34",
"@clerk/backend": "^3.2.0",
"@clerk/react": "^6.1.0",
"@clerk/shared": "^4.3.1",
"@fireproof/core": "workspace:0.0.0",
"@fireproof/core-device-id": "workspace:0.0.0",
"@fireproof/core-protocols-cloud": "workspace:0.0.0",
"@fireproof/core-protocols-dashboard": "workspace:0.0.0",
"@fireproof/core-runtime": "workspace:0.0.0",
"@fireproof/core-types-base": "workspace:0.0.0",
"@fireproof/core-types-protocols-cloud": "workspace:0.0.0",
"@fireproof/core-types-protocols-dashboard": "workspace:0.0.0",
"@fireproof/vendor": "^3.0.0",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/react-query": "^5.90.21",
"highlight.js": "^11.10.0",
"i": "^0.3.7",
"jose": "^6.2.1",
"minimatch": "^10.2.4",
"multiformats": "^13.4.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.2",
"react-router-dom": "^7.13.1",
"react-simple-code-editor": "^0.14.1",
"use-editable": "^2.3.3",
"use-fireproof": "workspace:0.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.28.0",
"@cloudflare/workers-types": "^4.20260316.1",
"@eslint/js": "^9.39.4",
"@fireproof/core-cli": "workspace:0.0.0",
"@libsql/client": "^0.17.0",
"@libsql/kysely-libsql": "^0.4.1",
"@rollup/plugin-replace": "^6.0.3",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.27",
"drizzle-kit": "0.30.6",
"drizzle-orm": "^0.45.1",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"rollup-plugin-visualizer": "^7.0.1",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vitest": "^4.0.8",
"wrangler": "^4.73.0",
"zx": "^8.8.5"
}
}