forked from daniel-cottone/BeautifulWeather
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 1.97 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 1.97 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "ultra-weather-app",
"description": "Ultra Weather App",
"version": "0.0.1",
"devDependencies": {
"react-scripts": "1.0.14"
},
"dependencies": {
"grid-styled": "^2.0.0-10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-overlay-loading": "^1.0.3",
"react-places-autocomplete": "^5.4.3",
"webpack": "^3.8.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"homepage": "https://weather.liveultrahealthy.com",
"author": "Nabyl Bennouri <nabyl@liveultrahealthy.com>",
"license": "MIT",
"files": [
"bin/",
"app/",
"lib/",
"dist/",
"src/",
"scripts/",
"resources/",
"menu/",
"cli.js",
"index.js"
],
"main": "src/App.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/IonicaBizau/react-weather-app.git"
},
"bugs": {
"url": "https://github.com/IonicaBizau/react-weather-app/issues"
},
"blah": {
"show_installation": true,
"is_only_web": false,
"ex_img": "https://i.imgur.com/thRBbbW.png",
"ex_url": "https://ionicabizau.github.io/react-weather-app",
"title": "Weather App",
"installation_command": {
"language": "sh",
"content": [
"git clone https://github.com/IonicaBizau/react-weather-app/",
"cd react-weather-app",
"npm i",
"npm start",
"",
"# To build the app for production, run the following command:",
"npm run build"
]
},
"thanks": {
"ul": [
"I found about the [wunderground.com](https://www.wunderground.com/) API service from [Kim Sarabia (**@kimsarabia**)](https://github.com/KimSarabia). Thanks! :cake:",
"The icons were created by [**@deiu**](https://github.com/deiu/weather-icons). :cake:",
"The forecast information is provided by [wunderground.com](https://www.wunderground.com/)."
]
}
}
}