-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
59 lines (59 loc) · 1.45 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": "redux-oauth",
"description": "Bearer token-based authentication system for redux with OAuth2 support",
"version": "2.0.8",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yury-dymov/redux-oauth.git"
},
"homepage": "https://github.com/yury-dymov/redux-oauth",
"keywords": [
"redux",
"isomorphic",
"universal",
"oauth",
"authentication"
],
"main": "dist/bundle.js",
"scripts": {
"release": "node node_modules/webpack/bin/webpack --verbose --colors --display-error-details -p",
"lint": "node node_modules/eslint/bin/eslint src"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md",
"webpack.config.js"
],
"dependencies": {
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.1.2",
"lodash": "^4.1.3",
"query-string": "^4.2.2",
"redux-immutablejs": "^0.0.8"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.1",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"eslint": "^3.2.2",
"eslint-plugin-import": "^1.12.0",
"json-loader": "^0.5.4",
"lodash": "^4.1.3",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"thunk": "^0.0.1",
"webpack": "^1.13.1",
"webpack-node-externals": "^1.2.0"
},
"peerDependencies": {
"redux": "*"
}
}