This repository has been archived by the owner on Nov 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
80 lines (80 loc) · 2.54 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
{
"name": "django_reactjs_boilerplate",
"version": "0.1.0",
"description": "A boilerplate for a Django REST/ReactJS project using Redux, Webpack, Hot Reloading, React Hot Reloader 3, Karma, and Mocha",
"main": "index.jsx",
"scripts": {
"build-development": "webpack --config webpack/webpack.local.config.js --progress --colors",
"build-production": "webpack --config webpack/webpack.production.config.js --progress --colors",
"watch": "webpack-dev-server --config webpack/webpack.local.config.js",
"test": "./node_modules/karma/bin/karma start webpack/karma.config.js --log-level debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/genomics-geek/django_reactjs_boilerplate.git"
},
"keywords": [
"Django",
"ReactJS",
"Redux",
"React-Hot-Reloader-3",
"Webpack",
"Karma",
"Mocha"
],
"author": "Michael A. Gonzalez",
"license": "MIT",
"bugs": {
"url": "https://github.com/genomics-geek/django_reactjs_boilerplate/issues"
},
"homepage": "https://github.com/genomics-geek/django_reactjs_boilerplate#readme",
"devDependencies": {
"axios": "^0.15.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.6",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"css-loader": "^0.25.0",
"deepfreeze": "^2.0.0",
"enzyme": "^2.5.1",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"expect": "^1.20.2",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"lodash": "^4.16.4",
"mocha": "^3.1.2",
"react": "^15.3.2",
"react-bootstrap": "^0.30.5",
"react-cookie": "^0.4.8",
"react-dom": "^15.3.2",
"react-fontawesome": "^1.2.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.6",
"redux": "^3.6.0",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.1.0",
"redux-thunk": "^2.1.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-bundle-tracker": "0.0.93",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
}
}