-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.14 KB
/
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
38
39
40
41
42
43
{
"name": "express-typescript",
"version": "1.0.0",
"description": "express ws socket.io v4 with typescript",
"main": "index.ts",
"scripts": {
"start": "nodemon index.ts",
"dev": "nodemon index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/Ashaffah/express-typescript.git"
},
"author": "Ashaffah",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/Ashaffah/express-typescript/issues"
},
"homepage": "https://gitlab.com/Ashaffah/express-typescript#readme",
"dependencies": {
"@prisma/client": "5.4.2",
"@trpc/server": "^10.44.1",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/node": "^20.5.9",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"socket.io": "^4.7.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.4",
"@types/jsonwebtoken": "^9.0.3",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}