-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 919 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 919 Bytes
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
{
"name": "orb-sync-node-fastify",
"version": "0.0.0",
"description": "Node.js fastify app to sync Orb data to Postgres.",
"main": "server.js",
"type": "commonjs",
"scripts": {
"dev": "tsx --watch ./src/server.ts | pino-pretty",
"build": "tsc -p tsconfig.json",
"start": "NODE_ENV=production node dist/server.js",
"lint": "eslint 'src/**'",
"lint:check": "eslint 'src/**'",
"format": "prettier --write src/**",
"format:check": "prettier src/**",
"typecheck": "tsc --noEmit",
"test": "vitest --run"
},
"author": "Supabase",
"license": "Apache-2.0",
"dependencies": {
"@fastify/autoload": "^6.3.0",
"@fastify/type-provider-typebox": "^6.0.0",
"@sentry/node": "^10.0.0",
"dotenv": "^17.0.0",
"fastify": "^5.3.2",
"orb-sync-lib": "*"
},
"devDependencies": {
"pino-pretty": "^13.0.0",
"tsx": "^4.19.3",
"vitest": "^3.2.4"
}
}