-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.9 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "chatboxx",
"version": "1.0.0",
"description": "Chatboxx is a chat app where users can create rooms, join rooms, send direct messages and recieve notifications all in real time",
"author": "Ilodigwe Chinaza",
"main": "index.js",
"homepage": "https://chatboxx.onrender.com/",
"demo url": "https://chatboxx.onrender.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/chifarol/chatboxx.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"initialize": "npm install",
"start": "node ./backend/index.js",
"watch": "nodemon ./backend/index.js",
"dev": "webpack --mode development --watch --entry ./frontend/src/index.js --output-path ./backend/public",
"build-webpack": "webpack --mode production --watch --entry ./frontend/src/index.js --output-path ./backend/public"
},
"keywords": [],
"license": "ISC",
"dependencies": {
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"cloudinary": "^1.32.0",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"dotenv-webpack": "^8.0.1",
"ejs": "^3.1.8",
"ejs-mate": "^4.0.0",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"helmet": "^6.0.0",
"html-entities": "^2.3.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.1",
"morgan": "^1.10.0",
"slugify": "^1.6.5",
"socket.io": "^4.5.2",
"socket.io-client": "^4.0.0",
"url": "^0.11.0",
"uuid": "^9.0.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"nodemon": "^2.0.20",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.1",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}