-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 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
41
42
43
44
45
46
47
48
49
{
"name": "weather-journal-app",
"version": "1.0.0",
"description": "## Overview This project requires you to create an asynchronous web app that uses Web API and user data to dynamically update the UI.",
"main": "server.js",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"debug": "^4.1.1",
"express": "^4.17.1",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"nodemon": "^2.0.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "node server.js",
"lint": "eslint server.js"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development",
"PORT": 4000
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hulyak/weather-journal-app.git"
},
"keywords": [
"weather",
"app"
],
"author": "Hulya Karakaya",
"license": "MIT",
"bugs": {
"url": "https://github.com/hulyak/weather-journal-app/issues"
},
"homepage": "https://github.com/hulyak/weather-journal-app#readme"
}