-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 868 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
38
39
{
"name": "fixatdoorstep",
"version": "1.0.0",
"main": "server.js",
"license": "MIT",
"author": {
"name": "Sushant Borsania"
},
"engines": {
"node": "10.16.3",
"npm": "6.9.0"
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "npm install --prefix client && npm run build --prefix client"
},
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"body-parser": "^1.18.3",
"concurrently": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.16.4",
"path": "^0.12.7",
"nodemon": "^1.18.10"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"keywords": [
"heroku",
"express",
"create-react-app",
"react"
]
}