-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 973 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 973 Bytes
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
{
"name": "df-2.0-live-chat-with-websocket",
"version": "1.0.0",
"description": "A one page live chat application",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsoa spec-and-routes && nodemon",
"build": "tsoa spec-and-routes && tsc",
"start": "node dist/main.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/swagger-ui-express": "^4.1.8",
"bcrypt": "^6.0.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"mongoose": "^8.21.1",
"socket.io": "^4.8.3",
"swagger-ui-express": "^5.0.1",
"tsoa": "^7.0.0-alpha.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/mongoose": "^5.11.96",
"@types/node": "^25.0.10",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}