-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
40
{
"name": "weather",
"version": "1.0.0",
"description": "Weather App using PostgreSQL, Express, React, and Node.",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"client": "npm start --prefix client",
"server": "nodemon server",
"start": "node server",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xchanmolx/weather.git"
},
"keywords": [
"react"
],
"author": "Chiantine P. Manigos",
"license": "ISC",
"bugs": {
"url": "https://github.com/xchanmolx/weather/issues"
},
"homepage": "https://github.com/xchanmolx/weather#readme",
"devDependencies": {
"concurrently": "^5.0.2",
"nodemon": "^2.0.2",
"typescript": "^3.7.4"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pg": "^7.15.1",
"request": "^2.88.0",
"request-promise": "^4.2.5"
}
}