-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.09 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": "weatherapp",
"version": "0.0.1",
"description": "Simple web app to display the weather in different places",
"author": "Dinarte Jesus",
"license": "MIT",
"private": true,
"scripts": {
"dev": "webpack-dev-server --devtool eval --hot --progress --colors",
"deploy": "webpack -p"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-jest": "^5.3.0",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.26.1",
"eslint": "^3.13.1",
"eslint-loader": "^1.6.1",
"extract-text-webpack-plugin": "^2.0.0-beta.5",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.26.0",
"node-sass": "^3.13.1",
"redux-logger": "^2.0.4",
"redux-thunk": "^1.0.0",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^2.2.0",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"material-design-lite": "^1.3.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-redux": "^4.0.0",
"redux": "^3.0.4",
"weather-icons": "^1.3.2"
}
}