-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.69 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
50
51
52
53
54
55
56
57
{
"name": "get_weather",
"version": "1.0.0",
"description": "Simple project to learn about React.js and its concepts.",
"main": "index.js",
"scripts": {
"eslint": "node_modules/.bin/eslint app",
"dev": "webpack-dev-server --inline --content-base --history-api-fallback",
"build": "webpack -p --config ./webpack.config.js --progress",
"postinstall": "webpack -p --config ./webpack.prod.config.js --progress",
"start": "node server.js",
"gh-deploy": "npm run postinstall&&gh-pages -d build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcarva/get_weather.git"
},
"keywords": [
"get",
"weather",
"react",
"app"
],
"author": "Jaelson Carvalho <jaelsoncarvalhojr@gmail.com> (https://github.com/jcarva)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jcarva/get_weather/issues"
},
"homepage": "https://jcarva.github.io/get_weather",
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^3.18.0",
"eslint-plugin-react": "^6.10.2",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^0.9.0",
"gh-pages": "^0.12.0",
"html-webpack-plugin": "^2.22.0",
"json-loader": "^0.5.4",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"axios": "^0.15.3",
"express": "^4.14.0",
"react": "^15.2.1",
"react-addons-css-transition-group": "^15.4.1",
"react-dom": "^15.2.1",
"react-router": "^2.6.0"
}
}