-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
59 lines (59 loc) · 1.93 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
58
59
{
"name": "react-onsenui-redux-weather",
"version": "1.0.0",
"description": "Simple Weather App implemntation with Onsen UI React Components and Redux",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --host 0.0.0.0 --progress --content-base www/",
"build": "npm run lint && cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"deploy": "npm run build && git commit www -m \"Deploy\" && git subtree push --prefix www origin gh-pages",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/argelius/react-onsenui-redux-weather.git"
},
"author": "Andreas Argelius <andreas@argeli.us>",
"license": "MIT",
"bugs": {
"url": "https://github.com/argelius/react-onsenui-redux-weather/issues"
},
"homepage": "https://github.com/argelius/react-onsenui-redux-weather#readme",
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-core": "^6.18.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.18.0",
"country-data": "0.0.31",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"eslint": "^3.8.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-standard": "^2.0.0",
"file-loader": "^0.9.0",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.4",
"ncp": "^2.0.0",
"node-uuid": "^1.4.7",
"onsenui": "2.0.4",
"postcss-loader": "^1.0.0",
"promise": "^7.1.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-onsenui": "^1.0.4",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.3.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
}
}