This repository has been archived by the owner on Sep 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 236
/
package.json
executable file
·91 lines (91 loc) · 2.89 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
{
"name": "react-redux-jwt-auth-example",
"version": "0.1.0",
"description": "Authentication with React, Redux, and JWT!",
"main": "index.js",
"scripts": {
"compile": "NODE_ENV=production webpack",
"start": "npm run dev",
"dev": "NODE_ENV=development node --harmony bin/webpack-dev-server",
"mocha": "mocha --recursive --compilers js:babel-core/register",
"mocha:watch": "npm run mocha -- --watch",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --recursive --compilers js:babel/register --colors --reporter dot test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshgeller/react-redux-jwt-auth-example.git"
},
"author": "Josh Geller <[email protected]>",
"license": "MIT",
"dependencies": {
"babel": "^5.8.23",
"body-parser": "^1.14.1",
"dotenv": "^1.2.0",
"errorhandler": "^1.4.2",
"es6-promise": "^3.0.2",
"expect": "^1.12.2",
"express": "^4.13.3",
"history": "^1.9.0",
"isomorphic-fetch": "^2.2.0",
"istanbul": "^0.4.0",
"jsdom": "^7.0.2",
"jsonwebtoken": "^5.4.1",
"jwt-decode": "^1.4.0",
"method-override": "^2.3.5",
"nock": "^2.17.0",
"react": "^0.14.0",
"react-bootstrap": "^0.27.3",
"react-dom": "^0.14.0",
"react-mixin": "^3.0.1",
"react-redux": "^4.0.0",
"react-router": "1.0.0-rc1",
"redux": "^3.0.0",
"redux-logger": "^2.0.4",
"redux-router": "^1.0.0-beta3",
"redux-thunk": "^1.0.0",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1",
"yargs": "^3.18.0"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"autoprefixer-loader": "^3.1.0",
"babel-eslint": "^4.1.1",
"babel-loader": "^5.0.0",
"babel-plugin-react-transform": "^1.1.0",
"babel-runtime": "^5.8.20",
"chai-as-promised": "^5.1.0",
"css-loader": "^0.21.0",
"eslint": "^1.0.0",
"eslint-config-airbnb": "0.1.0",
"eslint-plugin-react": "^3.3.1",
"extract-text-webpack-plugin": "^0.8.0",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^1.6.1",
"karma": "^0.13.8",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-coverage": "^0.5.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sinon-chai": "^1.0.0",
"karma-spec-reporter": "0.0.21",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.5",
"node-sass": "^3.3.3",
"phantomjs": "^1.9.17",
"phantomjs-polyfill": "0.0.1",
"react-addons-test-utils": "^0.14.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.4",
"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",
"sass-loader": "^3.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
}
}