-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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": "minglr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "12.17.x"
},
"scripts": {
"start": "node app.js",
"backend": "nodemon app.js --ignore 'client/**'",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"npm run backend\" \"npm run start --prefix client\"",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"author": "Jaeyoon Song",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cloudinary": "^1.13.2",
"concurrently": "^5.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"log4js": "^6.3.0",
"moment": "^2.26.0",
"mongoose": "^5.9.16",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^2.2.1",
"node-sass": "^4.14.1",
"nodemailer": "^6.4.8",
"request": "^2.88.2",
"socket.io": "^2.3.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}