-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 5.59 KB
/
package.json
File metadata and controls
148 lines (148 loc) · 5.59 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "upflow",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "run-s build:react-router build:job build:workers build:db-scripts",
"build:job": "esbuild --platform=node --format=esm ./batch/job-scheduler.ts --outdir=build --bundle --packages=external",
"build:workers": "esbuild --platform=node --format=esm ./app/services/jobs/analyze-worker.ts --outdir=build/workers --bundle --packages=external",
"build:db-scripts": "esbuild --platform=node --format=esm ./db/apply-tenant-migrations.ts ./db/migrate-integrations-to-shared.ts --outdir=build/db --bundle --packages=external",
"build:react-router": "react-router build",
"dev": "NODE_OPTIONS='--import ./instrument.server.mjs' react-router dev",
"start": "NODE_ENV=production NODE_OPTIONS='--import ./instrument.server.mjs' react-router-serve ./build/server/index.js",
"format": "prettier --cache -c . --experimental-cli",
"format:fix": "prettier --cache -w . --experimental-cli",
"lint": "biome lint .",
"db:setup": "mkdir -p data && run-s db:apply db:seed",
"db:migrate-integrations-to-shared": "tsx db/migrate-integrations-to-shared.ts",
"db:seed": "tsx db/seed.ts",
"db:generate": "run-s db:generate:shared db:generate:tenant",
"db:generate:shared": "kysely-codegen --config-file kysely-codegen.shared.config.ts --url ./data/data.db",
"db:generate:tenant": "kysely-codegen --config-file kysely-codegen.tenant.config.ts --url ./data/tenant_seed.db",
"db:migrate": "run-s db:migrate:shared db:migrate:tenant",
"db:migrate:shared": "atlas migrate diff --env local",
"db:migrate:tenant": "atlas migrate diff --env tenant",
"db:apply": "run-s db:apply:shared db:migrate-integrations-to-shared db:apply:tenant",
"db:apply:shared": "atlas migrate apply --env local --url 'sqlite://data/data.db'",
"db:apply:tenant": "tsx db/apply-tenant-migrations.ts",
"graphql:schema": "cp node_modules/@octokit/graphql-schema/schema.graphql batch/github/schema.graphql",
"test": "vitest --run",
"test:emulate:github": "RUN_GITHUB_EMULATE_TESTS=1 GITHUB_API_BASE_URL=http://localhost:4000 vitest --run app/services/github-emulate.smoke.test.ts",
"test:e2e": "run-s test:e2e:build test:e2e:run",
"test:e2e:build": "run-s build",
"test:e2e:run": "playwright test",
"typecheck": "react-router typegen && tsc -b",
"validate": "run-s lint format typecheck build test",
"emulate:github": "emulate --service github --seed emulate.config.yaml",
"ops": "tsx ops/cli.ts",
"lab:fetch": "pnpm tsx lab/fetch.ts",
"lab:serve": "python3 -m http.server 8787 -d lab/output"
},
"dependencies": {
"@base-ui/react": "1.4.0",
"@coji/durably": "^0.15.0",
"@coji/durably-react": "^0.15.0",
"@coji/zodix": "0.7.0",
"@conform-to/react": "1.19.0",
"@conform-to/zod": "1.19.0",
"@dsnp/parquetjs": "1.8.7",
"@google/genai": "1.50.1",
"@googleapis/sheets": "13.0.1",
"@holiday-jp/holiday_jp": "2.5.1",
"@octokit/auth-app": "8.2.0",
"@octokit/plugin-rest-endpoint-methods": "17.0.0",
"@react-router/express": "7.14.1",
"@react-router/node": "7.14.1",
"@sentry/node": "10.49.0",
"@sentry/react-router": "10.49.0",
"@tanstack/react-table": "8.21.3",
"better-auth": "1.6.5",
"better-sqlite3": "12.9.0",
"class-variance-authority": "0.7.1",
"cleye": "2.5.0",
"clsx": "2.1.1",
"cmdk": "1.1.1",
"compression": "1.8.1",
"consola": "3.4.2",
"date-fns": "4.1.0",
"dayjs": "1.11.20",
"debug": "4.4.3",
"diff": "9.0.0",
"dotenv": "17.4.2",
"embla-carousel-react": "8.6.0",
"express": "5.2.1",
"gql.tada": "1.9.2",
"graphql": "16.13.2",
"isbot": "5.1.39",
"jszip": "3.10.1",
"kysely": "0.28.16",
"lucide-react": "1.8.0",
"morgan": "1.10.1",
"nanoid": "5.1.9",
"next-themes": "0.4.6",
"node-schedule": "2.1.1",
"octokit": "5.0.5",
"radix-ui": "latest",
"react": "19.2.5",
"react-day-picker": "9.14.0",
"react-dom": "19.2.5",
"react-router": "7.14.1",
"recharts": "2.15.3",
"remeda": "2.33.7",
"remix-toast": "4.0.0",
"sonner": "2.0.7",
"tailwind-merge": "3.5.0",
"tailwindcss-animate": "1.0.7",
"tiny-invariant": "1.3.3",
"ts-pattern": "5.9.0",
"vaul": "1.1.2",
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@octokit/graphql-schema": "15.26.1",
"@octokit/types": "16.0.0",
"@playwright/test": "1.59.1",
"@react-router/dev": "7.14.1",
"@tailwindcss/vite": "4.2.2",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/better-sqlite3": "7.6.13",
"@types/compression": "1.8.1",
"@types/debug": "4.1.13",
"@types/express": "5.0.6",
"@types/morgan": "1.9.10",
"@types/node": "25.6.0",
"@types/node-schedule": "2.1.8",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"emulate": "0.4.1",
"esbuild": "0.28.0",
"happy-dom": "20.9.0",
"kysely-codegen": "0.20.0",
"msw": "2.13.4",
"npm-run-all": "4.1.5",
"prettier": "3.8.3",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-tailwindcss": "0.7.2",
"react-router-auto-routes": "0.8.4",
"tailwindcss": "4.2.2",
"tsx": "4.21.0",
"typescript": "6.0.3",
"vite": "8.0.8",
"vite-plugin-devtools-json": "1.0.0",
"vitest": "4.1.4"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@tailwindcss/oxide",
"better-sqlite3",
"esbuild",
"msw"
]
}
}