-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 905 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
{
"name": "ContactForm",
"version": "1.0.0",
"description": "Webmaster Contact Form for MedGo Test",
"author": {
"name": "Ahmed",
"email": "ahmadchaari95@gmail.com"
},
"license": "MIT",
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"dev:server": "cd client && yarn build && cd .. && yarn start",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"path": "^0.12.7",
"pg": "^7.7.1",
"sequelize": "^4.41.2"
},
"devDependencies": {
"concurrently": "^4.1.0"
},
"keywords": [
"node",
"express",
"create-react-app"
]
}