-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 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
{
"name": "react-weather",
"version": "1.0.0",
"description": "This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "concurrently \"node server/\" \"cd client && npm start\"",
"prod": "cd client && npm run build && cd .. && node server",
"heroku-postbuild": "cd client/ && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"start": "node server/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesjenkinsjr/react-weather.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jamesjenkinsjr/react-weather/issues"
},
"homepage": "https://github.com/jamesjenkinsjr/react-weather#readme",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"dotenv": "^5.0.0",
"express": "^4.16.2"
},
"devDependencies": {
"concurrently": "^3.5.1"
}
}