forked from rennemannd/MERN-Heroku-Template
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
35 lines (35 loc) · 1.17 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
{
"name": "react_template_repo",
"version": "1.0.0",
"description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
"main": "index.js",
"scripts": {
"test": "mocha server/tests",
"install-all": "concurrently \"npm install\" \"cd client && npm install\"",
"client": "cd client && npm start",
"server": "nodemon server/server.js",
"dev": "concurrently \"nodemon server/server.js\" \"cd client && npm run start\"",
"build": "cd client && npm build",
"start": "node server/server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/UFWebApps/React_Template_Repo.git"
},
"keywords": [],
"author": "Dakota Rennemann",
"license": "MIT",
"dependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.10",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mongoose": "^5.7.1",
"morgan": "^1.9.1",
"should": "^13.2.3",
"supertest": "^4.0.2",
"mocha": "^6.2.1"
},
"homepage": "https://github.com/UFWebApps/React_Template_Repo#readme"
}