forked from Calebux/SYNCRO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.55 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
{
"name": "syncro-monorepo",
"version": "1.0.0",
"private": true,
"packageManager": "npm@10.9.2",
"workspaces": [
"backend",
"client",
"sdk",
"shared"
],
"scripts": {
"prepare": "node -e \"try{require('fs').accessSync('.git');require('child_process').execSync('chmod +x .husky/pre-commit',{stdio:'ignore'})}catch(e){}\"",
"typecheck": "npm run typecheck --workspaces --if-present && npx -p typescript@5.9.3 tsc --noEmit",
"typecheck:root": "npx -p typescript@5.9.3 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",
"lint:conflicts": "node scripts/check-conflict-markers.mjs",
"precommit:check": "bash scripts/pre-commit-checks.sh",
"check:migrations": "node scripts/check-migration-drift.js",
"check:migrations:verify-db": "node scripts/check-migration-drift.js --verify-db --strict",
"check:migrations:verify-schema": "node scripts/check-migration-drift.js --verify-schema --strict",
"schema:snapshot": "bash scripts/generate-schema-snapshot.sh",
"cleanup:migrations": "node scripts/cleanup-duplicate-migrations.js"
},
"devDependencies": {
"@types/node": "^25.6.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2"
},
"dependencies": {
"@supabase/supabase-js": "^2.105.0",
"typescript": "^5.9.3"
}
}