-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 939 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 939 Bytes
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
{
"name": "syncro-monorepo",
"version": "1.0.0",
"private": true,
"packageManager": "npm@10.9.2",
"workspaces": [
"backend",
"client",
"sdk",
"shared"
],
"scripts": {
"typecheck": "npm run typecheck --workspaces --if-present && tsc --noEmit",
"typecheck:root": "tsc --noEmit",
"typecheck:backend": "npm run typecheck -w backend",
"typecheck:client": "npm run typecheck -w client",
"typecheck:sdk": "npm run typecheck -w sdk",
"typecheck:shared": "npm run typecheck -w shared",
"generate:openapi": "cd backend && npm run swagger:export",
"lint:todos": "node scripts/check-todos.mjs",
"check:migrations": "node scripts/check-migration-drift.js",
"cleanup:migrations": "node scripts/cleanup-duplicate-migrations.js"
},
"devDependencies": {
"@types/node": "^25.6.0"
},
"dependencies": {
"@supabase/supabase-js": "^2.105.0",
"typescript": "^5.9.3"
}
}