forked from Sumechoo/magisale-internship-todo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "magisale-internship-todo",
"version": "1.0.0",
"description": "Example on using create-react-app with a Node Express Backend",
"author": {
"name": "Wonderio619",
"email": "wonderio619@gmail.com"
},
"license": "MIT",
"scripts": {
"client": "cd client && npm run start",
"server": "nodemon server_hooked.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run 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": {
"@babel/core": "^7.1.2",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"mongoose": "^5.3.2",
"morgan": "^1.9.1",
"source-map-support": "^0.5.9"
},
"devDependencies": {
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"concurrently": "^4.0.1"
},
"repository": {
"type": "git"
},
"keywords": [
"node",
"express",
"create-react-app"
]
}