-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.36 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
{
"name": "@fireproof/dashboard-backend",
"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",
"build": "core-cli tsc",
"lint": "eslint .",
"test": "vitest --run",
"format": "prettier --config ../../.prettierrc .",
"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",
"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",
"@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-device-id": "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",
"jose": "^6.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260317.1",
"@eslint/js": "^9.39.4",
"@fireproof/core-cli": "workspace:0.0.0",
"@fireproof/core-keybag": "workspace:0.0.0",
"@libsql/client": "^0.17.2",
"@libsql/kysely-libsql": "^0.4.1",
"drizzle-kit": "0.30.6",
"drizzle-orm": "^0.45.1",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"vitest": "^4.0.8",
"wrangler": "^4.76.0",
"zx": "^8.8.5"
}
}