forked from carolhealth/redux-auth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
141 lines (141 loc) · 3.98 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "redux-auth",
"description": "Complete token authentication system for react + redux.",
"version": "0.0.5-beta7",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "https://github.com/lynndylanhurley/redux-auth.git"
},
"homepage": "https://github.com/lynndylanhurley/redux-auth",
"keywords": [
"react",
"isomorphic",
"universal",
"starter",
"boilerplate",
"template",
"webpack",
"koa",
"transmit"
],
"main": "index.js",
"scripts": {
"release":
"node ./node_modules/webpack/bin/webpack.js --verbose --colors --display-error-details --config webpack.release.js",
"test":
"node_modules/.bin/_mocha --timeout 5000 --compilers .:test/compiler.js test/runner.js",
"test-coverage":
"node_modules/.bin/babel-node node_modules/.bin/isparta cover --root ./src node_modules/.bin/_mocha -- --timeout 5000 test/runner.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
},
"files": [
"src",
"default-theme.js",
"bootstrap-theme.js",
"material-ui-theme.js",
"semantic-ui-theme.js",
"index.js",
"LICENSE.md",
"README.md"
],
"dependencies": {
"browser-cookies": "^1.0.8",
"classnames": "^2.1.5",
"cookie": "^0.2.3",
"extend": "^3.0.0",
"immutable": "^3.7.5",
"isomorphic-fetch": "^2.1.1",
"query-string": "^2.4.2",
"rc-dialog": "^6.1.1",
"react-bootstrap": "^0.31.3",
"react-loader": "^2.4.0",
"redux-form": "6.8.0",
"redux-immutablejs": "0.0.8",
"semantic-ui-react": "^0.75.1"
},
"devDependencies": {
"babel-cli": "6.3.13",
"babel-core": "6.3.13",
"babel-loader": "6.1.0",
"babel-polyfill": "6.3.13",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"babel-register": "6.3.13",
"bootstrap": "^3.3.5",
"bootstrap-sass": "^3.3.5",
"bootstrap-webpack": "0.0.6",
"chai": "^3.3.0",
"chai-as-promised": "^5.1.0",
"concurrently": "0.1.1",
"coveralls": "^2.11.4",
"css-loader": "^0.19.0",
"exports-loader": "^0.6.2",
"extract-text-webpack-plugin": "0.9.1",
"fetch-mock": "^2.1.0",
"file-loader": "0.8.5",
"h2o2": "4.0.1",
"hapi": "9.3.1",
"highlight.js": "^8.8.0",
"history": "^4.7.2",
"husky": "^0.14.3",
"imports-loader": "^0.6.4",
"inert": "3.0.1",
"install": "^0.3.0",
"invariant": "^2.2.0",
"isparta": "^4.0.0",
"istanbul": "^0.3.22",
"istanbul-instrumenter-loader": "^0.1.3",
"jquery": "^2.1.4",
"jquery-deparam": "^0.4.2",
"jsdom": "^9.4.1",
"jsdomify": "^2.1.0",
"json-loader": "0.5.4",
"less-loader": "^0.6.2",
"lint-staged": "^7.0.0",
"material-ui": "0.19.4",
"mocha": "^3.4.2",
"mockery": "^1.4.0",
"nock": "^3.3.2",
"node-sass": "^3.3.3",
"nodemon": "^1.7.2",
"piping": "0.2.0",
"prettier": "1.11.0",
"react": "^16.1.0",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^16.1.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-bootstrap": "^0.24.4",
"react-router-redux": "next",
"react-select": "^1.0.0-beta13",
"react-tap-event-plugin": "3.0.2",
"react-transmit": "3.2.0",
"redux": "^3.3.1",
"redux-thunk": "^2.2.0",
"require-subvert": "^0.1.0",
"rewire": "^2.5.1",
"sass-loader": "^3.0.0",
"serialize-javascript": "^1.1.2",
"sinon": "1.17.0",
"style-loader": "^0.12.4",
"thunk": "^0.0.1",
"url-loader": "^0.5.6",
"warning": "^2.1.0",
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0"
},
"peerDependencies": {
"react-router-bootstrap": "*"
},
"engines": {
"node": ">=0.10.32"
},
"resolutions": {
"react": "^16.2.0"
}
}