-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 2.48 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
{
"private": true,
"type": "module",
"packageManager": "pnpm@10.24.0",
"scripts": {
"dev": "concurrently -k -n api,web -c blue,magenta \"pnpm run dev:api\" \"pnpm run dev:web\"",
"dev:api": "jiti scripts/require-wrangler-config.ts && wrangler dev --port 8788",
"dev:web": "pnpm --filter @floway-dev/web run dev",
"dev:node": "pnpm --filter @floway-dev/platform-node run start",
"build:web": "pnpm --filter @floway-dev/web run build",
"deploy": "pnpm install --frozen-lockfile && jiti scripts/require-wrangler-config.ts && pnpm run build:web && wrangler deploy --message \"$(git rev-parse HEAD)\"",
"db:migrate": "jiti scripts/require-wrangler-config.ts && wrangler d1 migrations apply DB",
"db:migrate:remote": "jiti scripts/require-wrangler-config.ts && wrangler d1 migrations apply DB --remote",
"tools:backfill-usage-pricing": "pnpm --filter @floway-dev/tools run backfill-usage-pricing",
"typegen": "pnpm --filter @floway-dev/web exec react-router typegen",
"verify": "pnpm run typegen && pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run test:installers && pnpm run check:agents-md && pnpm run check:generated-assets && pnpm run check:verify-parity && pnpm run build:web",
"lint": "cross-env NODE_OPTIONS=\"--max-old-space-size=12288\" eslint --cache .",
"lint:fix": "cross-env NODE_OPTIONS=\"--max-old-space-size=12288\" eslint --cache . --fix",
"typecheck": "pnpm -r run typecheck && tsc --noEmit -p tsconfig.scripts.json",
"test": "cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run",
"test:installers": "pnpm --filter @floway-dev/agent-setup run test:installers",
"check:agents-md": "jiti scripts/check-agents-md.ts",
"check:generated-assets": "pnpm --filter @floway-dev/agent-setup run generate-assets --check",
"check:verify-parity": "jiti scripts/check-verify-parity.ts",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@stylistic/eslint-plugin": "5.6.1",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "8.48.1",
"@typescript-eslint/parser": "8.48.1",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "9.39.1",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"husky": "^9.1.7",
"jiti": "2.6.1",
"jsonc-parser": "^3.3.1",
"typescript": "^5.9.3",
"vitest": "4.1.10",
"wrangler": "^4.81.0"
}
}