-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
84 lines (84 loc) · 2.63 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "login-modal-react-redux",
"version": "1.0.0",
"private": false,
"description": "Login modal implemntation with ReactJS and Redux",
"main": "index.js",
"scripts": {
"clean": "./node_modules/.bin/rimraf dist",
"build": "npm run clean && bower install && ./node_modules/.bin/webpack",
"lint": "./node_modules/.bin/eslint ./src ./test"
},
"repository": {
"type": "git",
"url": "https://github.com/dorsha/login-modal-react-redux.git"
},
"author": "Doron Sharon (dorsha)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dorsha/login-modal-react-redux/issues"
},
"homepage": "http://www.dorsha.com",
"dependencies": {
"classnames": "^2.2.0",
"es6-promise": "^3.0.2",
"express": "^4.13.3",
"history": "^1.13.1",
"immutable": "^3.7.5",
"isomorphic-fetch": "^2.2.0",
"npm-check-updates": "^2.3.4",
"react": "^0.14.1",
"react-addons-pure-render-mixin": "^0.14.1",
"react-dom": "^0.14.1",
"react-redux": "^4.0.0",
"react-router": "^1.0.0-rc3",
"redux": "^3.0.4",
"redux-logger": "^2.0.4",
"redux-router": "^1.0.0-beta3",
"redux-thunk": "^1.0.0",
"reselect": "^2.0.1",
"whatwg-fetch": "^0.10.0"
},
"devDependencies": {
"babel": "6.23.0",
"babel-core": "6.23.1",
"babel-eslint": "^4.1.4",
"babel-loader": "6.3.1",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-class-properties": "6.23.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-0": "6.22.0",
"babel-runtime": "5.8.38",
"css-loader": "^0.22.0",
"cssnext-loader": "^1.0.1",
"eslint": "^1.9.0",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.7.1",
"exports-loader": "^0.6.2",
"extract-text-webpack-plugin": "^0.9.1",
"fetch-mock": "2.2.8",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^1.6.2",
"image-webpack-loader": "^1.6.2",
"imports-loader": "^0.6.5",
"jquery": "^3.0.0",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"node-fetch": "^1.3.3",
"react-addons-test-utils": "^0.14.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "1.3.3",
"redux-devtools": "^3.0.0-beta-3",
"redux-devtools-dock-monitor": "^1.0.0-beta-3",
"redux-devtools-log-monitor": "^1.0.0-beta-3",
"rimraf": "^2.4.3",
"style-loader": "^0.13.0",
"webpack": "^1.12.3",
"webpack-livereload-plugin": "^0.4.0"
}
}