-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "mern-app",
"version": "1.0.0",
"description": "chat-app",
"main": "backend/index.js",
"scripts": {
"start": "nodemon backend/index.js",
"frontend": "cd frontend && npm start",
"backend": "cd backend && npm install && node index.js",
"vercel-build": "cd frontend && npm install && npm run build",
"heroku-postbuild": "cd frontend && npm install && npm run build"
},
"heroku-run-build-script": true,
"author": "jdtheefirst",
"license": "ISC",
"dependencies": {
"@mui/material": "^5.15.15",
"@paypal/checkout-server-sdk": "^1.0.3",
"@xmldom/xmldom": "^0.7.13",
"axios": "^1.7.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"concurrently": "^8.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.0.1",
"fuse.js": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.4.0",
"nodemailer": "^6.9.5",
"nodemon": "^3.0.1",
"react-icons": "^5.1.0",
"react-social-icons": "^5.15.0",
"redis": "^4.6.14",
"socket.io": "^4.6.1",
"socket.io-client": "^4.7.2",
"stripe": "^17.2.0"
},
"engines": {
"node": ">=21.5.0",
"npm": ">=10.4.0"
},
"devDependencies": {
"webpack-cli": "^5.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdtheefirst/mern-rocketchat.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/jdtheefirst/mern-rocketchat/issues"
},
"homepage": "https://github.com/jdtheefirst/mern-rocketchat#readme"
}