-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 956 Bytes
/
package.json
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
{
"name": "commonService",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm install && npm rebuild typescript && tsc",
"dev-start": "nodemon index.ts",
"prod-start": "npm install && tsc && node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.7.1",
"@supabase/supabase-js": "^2.44.1",
"@types/express": "^4.17.21",
"cors": "^2.8.5",
"eslint": "^8.54.0",
"express": "^4.19.2",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"kafkajs": "^2.2.4",
"multer": "^1.4.5-lts.1",
"socket.io": "^4.7.2",
"tsc": "^2.0.4",
"typescript": "^5.5.3"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.11",
"@types/node": "^20.10.6",
"nodemon": "^3.0.1",
"prisma": "^5.7.1",
"ts-node": "^10.9.1"
}
}