-
Notifications
You must be signed in to change notification settings - Fork 638
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.9 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.9 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
{
"name": "@supabase-js/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"commit": "cz",
"prepare": "husky",
"codegen": "node scripts/sync-common-types.js",
"codegen:check": "node scripts/sync-common-types.js && git diff --exit-code packages/core/supabase-js/src/lib/rest/types/common && echo '\n✅ Generated types are in sync!' || (echo '\n❌ Generated types are out of sync.\n Run: npm run codegen\n Then commit the changes.\n' && exit 1)",
"codegen:postgrest": "node scripts/generate-postgrest-types.js",
"codegen:check:postgrest": "node scripts/generate-postgrest-types.js && git diff --exit-code packages/core/postgrest-js/test/types.generated.ts && echo '\n✅ Postgrest generated types are in sync!' || (echo '\n❌ Postgrest generated types are out of sync.\n Run: npm run codegen:postgrest\n Then commit the changes.\n' && exit 1)",
"release-canary": "npx tsx scripts/release-canary.ts",
"release-beta": "npx tsx scripts/release-beta.ts",
"release-stable": "npx tsx scripts/release-stable.ts"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"private": true,
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/cz-commitlint": "^19.8.1",
"@nx/eslint": "21.6.2",
"@nx/eslint-plugin": "21.6.2",
"@nx/jest": "21.6.2",
"@nx/js": "21.6.2",
"@nx/playwright": "21.6.2",
"@nx/vite": "21.6.2",
"@nx/web": "21.6.2",
"@swc-node/register": "^1.11.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/faker": "^5.1.6",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "20.19.9",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/ui": "^3.0.0",
"commitizen": "^4.3.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"faker": "^5.3.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.3.0",
"jest-mock-server": "^0.1.0",
"jiti": "2.4.2",
"jsonc-eslint-parser": "^2.1.0",
"jsonwebtoken": "^9.0.0",
"jsr": "^0.13.5",
"nx": "21.6.2",
"prettier": "^3.6.2",
"supabase": "^2.81.2",
"ts-jest": "^29.4.2",
"ts-node": "^10.9.1",
"tsd": "^0.33.0",
"tsdown": "^0.18.0",
"tslib": "^2.3.0",
"typedoc": "^0.27.9",
"typescript": "~5.8.3",
"vite": "7.3.2",
"vitest": "^3.2.4",
"webpack-cli": "^5.1.4"
},
"workspaces": [
"packages/*",
"packages/core/auth-js",
"packages/core/functions-js",
"packages/core/postgrest-js",
"packages/core/realtime-js",
"packages/core/storage-js",
"packages/core/supabase-js"
]
}