-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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": "real-time-chat-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"server": "nodemon backend/server.js",
"start": "node backend/server.js",
"lint": "eslint **/*.js",
"lint:fix": "eslint --fix **/*.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend"
},
"type": "module",
"engines": {
"node": ">16.17.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Iryna-Vyshniak/real-time-chat-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Iryna-Vyshniak/real-time-chat-app/issues"
},
"homepage": "https://github.com/Iryna-Vyshniak/real-time-chat-app#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^2.0.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"joi": "^17.12.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.1.1",
"socket.io": "^4.7.4"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.3"
}
}