-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node app.js",
"server": "nodemon app.js",
"client": "cd ./fronreact && npm start",
"dash": "cd ./Admin/admin && npm start",
"dash-build": "cd ./Admin/admin && npm run build",
"client-i": "cd ./fronreact && npm i",
"client-build": "rm -rf html && mkdir html && cd ./fronreact && npm run build",
"build": "rm -rf html && mkdir html && cd ./fronreact && npm run build && cd .. && npm run dash-build",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@lottiefiles/react-lottie-player": "^3.0.0",
"aws-sdk": "^2.864.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"mongoose": "^5.9.22",
"nodemailer": "^6.6.1",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"paytabs_api": "^1.0.0",
"socket.io": "^2.3.0",
"stripe": "^8.130.0"
},
"devDependencies": {
"concurrently": "^5.2.0",
"cors": "^2.8.5",
"nodemon": "^2.0.4"
}
}