-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.12 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
{
"name": "syncro-monorepo",
"version": "1.0.0",
"private": true,
"packageManager": "npm@10.9.2",
"workspaces": [
"backend",
"client",
"sdk",
"shared",
"packages/ui",
"contracts"
],
"scripts": {
"prepare": "node -e \"try{require('fs').accessSync('.git');require('child_process').execSync('chmod +x .husky/pre-commit',{stdio:'ignore'})}catch(e){}\"",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck --filter=!@syncro/contracts && npm run typecheck:root",
"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": "npm run generate -w shared && npm run generate:contracts -w sdk",
"check:generated": "node scripts/check-generated-types.mjs",
"check:changeset": "node scripts/check-changeset.mjs",
"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",
"bootstrap": "node scripts/bootstrap.mjs",
"doctor": "node scripts/doctor.mjs",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@types/node": "^25.6.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"turbo": "^2.5.4"
},
"dependencies": {
"@supabase/supabase-js": "^2.105.0",
"typescript": "^5.9.3"
}
}