-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
60
61
62
{
"name": "react-redux-mini-gallery",
"version": "0.0.1-beta2",
"description": "Simple Gallery component - React, Redux, Material-ui",
"main": "index.js",
"scripts": {
"prestart": "npm install",
"start": "webpack-dev-server --config ./tooling/webpack.config.js --inline --quiet",
"lint": "eslint ./src",
"clean": "rm -rf ./dist/public",
"prebuild": "npm run clean",
"build": "webpack --config ./tooling/webpack.config.js --progress --colors --bail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gor181/react-redux-mini-gallery.git"
},
"keywords": [
"react",
"redux",
"material-ui",
"galllery"
],
"author": "Goran Udosic",
"license": "MIT",
"bugs": {
"url": "https://github.com/gor181/react-redux-mini-gallery/issues"
},
"homepage": "https://github.com/gor181/react-redux-mini-gallery#readme",
"dependencies": {
"lodash": "4.0.1",
"material-ui": "^0.16.1",
"moment": "2.11.2",
"react": "^15.3.2",
"react-addons-shallow-compare": "^15.0.1",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.6.0"
},
"devDependencies": {
"babel": "6.5.2",
"babel-core": "6.7.2",
"babel-eslint": "5.0.0",
"babel-loader": "6.2.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "6.6.1",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-1": "6.5.0",
"babel-preset-stage-2": "^6.5.0",
"css-loader": "0.23.1",
"eslint": "2.2.0",
"eslint-plugin-lodash": "1.2.1",
"eslint-plugin-react": "4.1.0",
"html-webpack-plugin": "2.9.0",
"muicss": "^0.5.1",
"style-loader": "0.13.0",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1"
}
}