-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.35 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"types": "module",
"scripts": {
"build": "tsc",
"start": "tsx src/index.ts",
"start:api": "tsx src/api.ts",
"start:worker": "tsx src/worker.ts",
"dev": "tsx watch src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codewithyuvi/Nexus-API-Server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/codewithyuvi/Nexus-API-Server/issues"
},
"homepage": "https://github.com/codewithyuvi/Nexus-API-Server#readme",
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.9.1",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.20.0",
"prisma": "^7.8.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3"
},
"dependencies": {
"@clerk/backend": "^3.4.12",
"@clerk/clerk-sdk-node": "^4.13.23",
"@openfga/sdk": "^0.9.6",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@socket.io/redis-adapter": "^8.3.0",
"bullmq": "^5.78.0",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"ioredis": "^5.11.1",
"node-cron": "^4.2.1",
"pg": "^8.21.0",
"razorpay": "^2.9.6",
"socket.io": "^4.8.3",
"svix": "^1.94.0"
}
}