-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.01 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.01 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
{
"name": "@fireproof/dashboard",
"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": "tsc; pnpm run build:vite",
"build:vite": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest --run",
"format": "prettier --config ../.prettierrc .",
"check": "pnpm format --write && tsc --noEmit && pnpm lint && pnpm test && pnpm build",
"drizzle:libsql": "drizzle-kit push --config ./drizzle.libsql.config.ts",
"drizzle:d1-local": "drizzle-kit push --config ./drizzle.d1-local-backend.config.ts",
"drizzle:d1-remote": "drizzle-kit push --config ./drizzle.d1-remote.config.ts",
"pack": "echo dashboard need not to pack",
"publish": "echo skip"
},
"dependencies": {
"@adviser/cement": "^0.4.20",
"@clerk/backend": "^2.4.1",
"@clerk/clerk-js": "^5.71.0",
"@clerk/clerk-react": "^5.33.0",
"@fireproof/core": "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/vendor": "^3.0.0",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/react-query": "^5.83.0",
"highlight.js": "^11.10.0",
"i": "^0.3.7",
"jose": "^6.0.10",
"minimatch": "^10.0.1",
"multiformats": "^13.3.6",
"partysocket": "^1.0.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.60.0",
"react-router-dom": "^7.6.2",
"react-simple-code-editor": "^0.14.1",
"use-editable": "^2.3.3",
"use-fireproof": "workspace:0.0.0"
},
"devDependencies": {
"@clerk/clerk-react": "^5.33.0",
"@cloudflare/vite-plugin": "^1.9.4",
"@cloudflare/workers-types": "^4.20250710.0",
"@eslint/js": "^9.31.0",
"@libsql/client": "^0.15.7",
"@libsql/kysely-libsql": "^0.4.1",
"@rollup/plugin-replace": "^6.0.1",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@vitejs/plugin-react": "^4.5.1",
"autoprefixer": "^10.4.20",
"drizzle-kit": "0.30.6",
"drizzle-orm": "^0.44.2",
"eslint": "^9.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^16.2.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"rollup-plugin-visualizer": "^6.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"vite": "^7.0.4",
"vitest": "^3.2.4",
"wrangler": "^4.24.3",
"zx": "^8.7.0",
"@fireproof/core-cli": "workspace:0.0.0"
}
}