-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1023 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
{
"name": "mymargdarshaka",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"client-install": "cd client && npm install",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "",
"devDependencies": {
"nodemon": "^2.0.13"
},
"dependencies": {
"aes-js": "^3.1.2",
"axios": "^0.23.0",
"concurrently": "^3.5.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.16.2",
"firebase-admin": "^10.0.0",
"http-proxy-middleware": "^2.0.1",
"joi": "^17.4.2",
"lodash": "^4.17.21",
"mongodb": "^4.1.2",
"mongoose": "^6.0.11",
"nodemailer": "^6.7.1",
"react-chatbot-kit": "^2.0.1",
"react-router-dom": "^5.3.0"
},
"proxy": "http://localhost:5000/"
}