-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
{
"name": "orb-sync-engine",
"version": "0.0.0",
"description": "Sync data from Orb to Postgres.",
"private": true,
"scripts": {
"dev:node-fastify": "turbo run dev --filter=orb-sync-node-fastify",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:check": "turbo run lint:check",
"format": "turbo run format",
"format:check": "turbo run format:check",
"typecheck": "turbo run typecheck"
},
"author": "Supabase",
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"apps/*"
],
"dependencies": {
"pino": "^10.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^4.0.0-alpha.13",
"turbo": "^2.8.20",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supabase/orb-sync-engine.git"
},
"keywords": [
"postgres",
"orb",
"billing",
"supabase"
],
"packageManager": "[email protected]"
}