-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 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
44
45
46
47
48
{
"name": "chat-app-api",
"version": "1.0.0",
"description": "hello world !",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/valentin-demange/chat-app-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/valentin-demange/chat-app-api/issues"
},
"homepage": "https://github.com/valentin-demange/chat-app-api#readme",
"dependencies": {
"@prisma/client": "^4.8.1",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-jwt": "^8.2.1",
"express-session": "^1.17.3",
"jsonwebtoken": "^9.0.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"prisma": "4.8.1",
"socket.io": "^4.5.4"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"engines": {
"node": "16.15.1"
}
}