-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 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
{
"name": "ynbchatapi",
"version": "1.0.0",
"description": "A Real Time Chat Server API",
"homepage": "https://github.com/yonewbeesls/ynbchatapi#readme",
"bugs": {
"url": "https://github.com/yonewbees/ynbchatapi/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yonewbees/ynbchatapi.git"
},
"license": "ISC",
"author": "briankeny",
"type": "commonjs",
"main": "dist/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsx app.ts",
"start" : "node dist/app.js",
"build":"tsc"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"body-parser": "^1.20.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"redis": "^4.7.0",
"socket.io": "^4.8.1",
"ua-parser-js": "^2.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.8",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.10",
"bcrypt": "^5.1.1",
"prisma": "5.22.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}