-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"name": "mern-instagram-clone",
"version": "1.0.0",
"repository": "https://github.com/web-2017/MERN-instagram.git",
"author": "https://github.com/web-2017",
"main": "server.js",
"license": "MIT",
"type": "module",
"scripts": {
"server": "NODE_ENV=production nodemon server.js",
"front": "npm start --prefix front",
"start": "node server.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix front && npm run build --prefix front",
"dev": "concurrently \"npm run server\" \"npm run front\"",
"kill": "concurrently -k",
"build-front": "npm run build --prefix front"
},
"engines": {
"node": "14.15.4",
"npm": "6.14.10"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.9",
"morgan": "^1.10.0",
"nodemailer": "^6.4.18",
"nodemailer-sendgrid-transport": "^0.2.0"
}
}