forked from Seedstars/django-react-redux-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.56 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
{
"name": "django-react-redux-jwt-base",
"version": "1.0.0",
"description": "Django, React, Redux, and JWT!",
"scripts": {
"dev": "webpack --progress --display-error-details --config webpack/common.config.js --watch",
"prod": "webpack --progress --config webpack/common.config.js",
"mocha": "mocha --require tests/require --recursive --compilers js:babel-core/register tests/js",
"mocha:watch": "npm run mocha -- --watch tests/js",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --require tests/require --recursive --compilers js:babel-core/register --colors --reporter dot tests/js/",
"lintjs": "eslint -c .eslintrc src/static tests/js || true",
"lintscss": "sass-lint --verbose --no-exit || true"
},
"repository": {
"type": "git",
"url": "git+https://bitbucket.org/seedstarsdev/django-react-redux-jwt-base.git"
},
"author": "Luis Rodrigues <luis.rodrigues@seedstarslabs.com>",
"license": "MIT",
"dependencies": {
"autoprefixer": "6.4.0",
"babel-core": "6.13.2",
"babel-loader": "6.2.5",
"babel-plugin-react-display-name": "2.0.0",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-undeclared-variables-check": "6.8.0",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.13.2",
"babel-preset-es2015-loose": "7.0.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-1": "6.13.0",
"babel-runtime": "6.11.6",
"body-parser": "1.15.2",
"classnames": "2.2.5",
"css-loader": "0.23.1",
"dotenv": "2.0.0",
"errorhandler": "1.4.3",
"es6-promise": "3.2.1",
"exports-loader": "0.6.3",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"foundation-sites": "6.2.3",
"font-awesome": "4.6.3",
"font-awesome-webpack": "0.0.4",
"history": "3.0.0",
"html-webpack-plugin": "2.22.0",
"imports-loader": "0.6.5",
"isomorphic-fetch": "2.2.1",
"jquery": "3.1.0",
"jsonwebtoken": "7.1.9",
"jwt-decode": "2.1.0 ",
"less": "2.7.1",
"less-loader": "2.2.3",
"method-override": "2.3.6",
"node-sass": "3.8.0",
"postcss-import": "8.1.0",
"postcss-loader": "0.10.1",
"react": "15.3.1",
"react-dom": "15.3.1",
"react-mixin": "3.0.5",
"react-redux": "4.4.5",
"react-router": "2.7.0",
"react-router-redux": "4.0.5",
"redux": "3.5.2",
"redux-thunk": "2.1.0",
"resolve-url-loader": "1.6.0",
"sass-loader": "4.0.0",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "2.1.0-beta.8",
"webpack-merge": "0.14.1",
"whatwg-fetch": "1.0.0",
"yargs": "5.0.0"
},
"devDependencies": {
"babel-eslint": "6.1.2",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"enzyme": "2.4.1",
"eslint": "3.3.1",
"eslint-config-airbnb": "10.0.1",
"eslint-plugin-import": "1.13.0",
"eslint-plugin-jsx-a11y": "2.1.0",
"eslint-plugin-react": "6.1.2",
"expect": "1.20.2",
"ignore-styles": "4.0.0",
"istanbul": "1.0.0-alpha.2",
"jsdom": "9.4.2",
"mocha": "3.0.2",
"mocha-junit-reporter": "1.12.0",
"nock": "8.0.0",
"react-addons-test-utils": "15.3.1",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.4",
"redbox-react": "1.3.0",
"redux-devtools": "3.3.1",
"redux-devtools-dock-monitor": "1.1.1",
"redux-devtools-log-monitor": "1.0.11",
"redux-logger": "2.6.1",
"redux-mock-store": "1.1.4",
"sass-lint": "1.9.0",
"sinon": "1.17.5",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.12.2"
}
}