-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.9 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
{
"name": "fluxychat",
"private": true,
"version": "0.1.0",
"description": "Fluxychat – ultra-low-cost realtime chat (SaaS + SDK) on Cloudflare Workers and Next.js",
"scripts": {
"dev": "pnpm --filter \"./apps/*\" --parallel dev",
"build": "pnpm -r build",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"test:e2e:smoke": "pnpm --filter @fluxychat/dashboard test:e2e:smoke",
"smoke:worker": "pnpm --filter @fluxychat/worker smoke:remote",
"smoke:bundled": "bash scripts/smoke-test.sh",
"provision:bootstrap": "node scripts/provision-bootstrap.mjs",
"sanitize:plans": "node scripts/sanitize-project-plans.mjs",
"sanitize:plans:apply": "node scripts/sanitize-project-plans.mjs -- --apply",
"check:pricing": "node scripts/check-pricing-consistency.mjs",
"check:tenant-scope": "node scripts/audit-tenant-scope.mjs",
"check:openapi": "node scripts/check-openapi-routes.mjs",
"check:do-bindings": "node scripts/check-do-bindings.mjs",
"dev:setup": "node scripts/dev-setup.mjs",
"first-message": "node scripts/first-message.mjs",
"check:env": "node scripts/check-env-readiness.mjs"
},
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"flatted": "3.4.2",
"minimatch": "10.2.5",
"brace-expansion": "5.0.6",
"postcss": ">=8.5.14",
"picomatch": "4.0.4",
"ajv": ">=8.18.0",
"qs": ">=6.15.2",
"ws": ">=8.21.0",
"lodash": ">=4.18.0",
"js-cookie": "3.0.7",
"hono": ">=4.12.21",
"esbuild": ">=0.28.1",
"vite": "^8.0.16",
"launch-editor": ">=2.10.1",
"@babel/core": ">=7.29.6",
"js-yaml": ">=4.2.0",
"undici": ">=7.28.0"
}
},
"devDependencies": {
"baseline-browser-mapping": "^2.10.29",
"turbo": "^2.9.14"
}
}