forked from supabase/supabase-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.11 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.11 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
{
"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-stable": "npx tsx scripts/release-stable.ts"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"private": true,
"devDependencies": {
"@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",
"@nx/webpack": "21.6.2",
"@supabase/node-fetch": "2.6.15",
"@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",
"@types/node-fetch": "^2.6.4",
"@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-mock-server": "^0.1.0",
"jiti": "2.4.2",
"jsonc-eslint-parser": "^2.1.0",
"jsonwebtoken": "^9.0.0",
"nx": "21.6.2",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"semantic-release-plugin-update-version-in-files": "^1.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.3.0",
"typedoc": "^0.27.9",
"typescript": "~5.8.3",
"verdaccio": "^6.0.5",
"vite": "7.1.11",
"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"
],
"nx": {
"includedScripts": [],
"targets": {
"local-registry": {
"executor": "@nx/js:verdaccio",
"options": {
"port": 4873,
"config": ".verdaccio/config.yml",
"storage": "tmp/local-registry/storage"
}
}
}
}
}