-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 890 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
38
{
"name": "backend-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "nodemon"
},
"keywords": [],
"type": "module",
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-device": "^0.4.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.1",
"nodemon": "^3.0.1",
"ws": "^8.15.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.10.5",
"@types/nodemon": "^1.19.6",
"@types/ws": "^8.5.10",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}