-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 906 Bytes
/
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
{
"name": "weather",
"version": "1.0.0",
"description": "A Simple weather app",
"main": "index.js",
"homepage": "https://muraliprajapati.github.io/weather/",
"scripts": {
"start": "webpack-dev-server --colors --mode=development",
"build":"webpack --mode=production",
"deploy":"gh-pages -d dist"
},
"keywords": [
"react",
"open-weather-map-api"
],
"author": "Murli",
"license": "MIT",
"devDependencies": {
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.11",
"style-loader": "^0.21.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3",
"gh-pages": "^1.1.0"
},
"dependencies": {
"axios": "^0.17.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-sparklines": "^1.7.0"
}
}