-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.56 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
{
"name": "syncgrid-api",
"version": "1.0.0",
"description": "A unified integration gateway API for payments, email, webhooks, provider routing, API keys, request logs, and third-party service abstraction.",
"private": true,
"type": "commonjs",
"main": "dist/server.js",
"scripts": {
"dev": "tsx src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"lint": "eslint .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/wbizmo/syncgrid-api.git"
},
"keywords": [
"api",
"fastify",
"typescript",
"payments",
"email",
"webhooks",
"integrations"
],
"author": "Williams",
"license": "MIT",
"bugs": {
"url": "https://github.com/wbizmo/syncgrid-api/issues"
},
"homepage": "https://github.com/wbizmo/syncgrid-api#readme",
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^6.0.0",
"@prisma/adapter-better-sqlite3": "^7.8.0",
"@prisma/client": "^7.8.0",
"better-sqlite3": "^12.10.1",
"bullmq": "^5.78.1",
"dotenv": "^17.4.2",
"fastify": "^5.8.5",
"ioredis": "^5.11.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.9.3",
"eslint": "^10.5.0",
"prettier": "^3.8.4",
"prisma": "^7.8.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.68.0"
},
"overrides": {
"deepmerge-ts": "^8.0.1"
}
}