-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "unknowd",
"version": "0.8.0",
"description": "Putting the communitiy back in community",
"engines": {
"npm": "^10.1.0",
"node": "^20.8.1"
},
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "pm2-runtime start ecosystem.config.js --env production -i max",
"start:dev": "concurrently \"pm2 start --env dev\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/echo-dave/unKnowd"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^7.6.0",
"nodemon": "^2.0.12"
},
"dependencies": {
"@google/maps": "^1.1.3",
"axios": "^1.2.0",
"bcryptjs": "^2.4.3",
"bulma": "=0.8.2",
"cloudinary": "^1.32.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"google-maps-react": "^2.0.6",
"if-env": "^1.0.4",
"jsonwebtoken": "^9.0.2",
"moment": "^2.29.4",
"mongoose": "^6.7.3",
"morgan": "^1.10.0",
"nodemailer": "^6.6.3",
"path": "^0.12.7",
"pm2": "^5.2.2",
"react-datepicker": "^2.16.0",
"react-router-dom": "^5.2.0",
"sass": "=1.56.1",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4"
}
}