forked from pugnascotia/spring-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2 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
{
"name": "spring-react-boilerplate",
"version": "1.0.0",
"description": "Spring + React + Redux + React Router isomorphic templating application",
"main": "index.js",
"scripts": {
"build": "flow && NODE_ENV=production webpack",
"compile-renderer": "babel src/main/resources/static/js/render.es6.js -o src/main/resources/static/js/render.js",
"debug": "flow && NODE_ENV=debug webpack",
"flow": "flow",
"lint": "eslint --cache . --ext .js --ext .jsx",
"start": "webpack-dev-server --hot --inline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pugnascotia/spring-react-boilerplate.git"
},
"author": "Rory Hunter",
"license": "ISC",
"bugs": {
"url": "https://github.com/pugnascotia/spring-react-boilerplate/issues"
},
"homepage": "https://github.com/pugnascotia/spring-react-boilerplate#readme",
"dependencies": {
"axios": "^0.15.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.14.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-beta",
"flow-bin": "^0.37.0",
"history": "^4.5.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-helmet": "^3.2.3",
"react-redux": "^4.4.4",
"react-router": "^4.0.0-alpha.4",
"react-router-redux": "^4.0.6",
"react-transform-hmr": "^1.0.4",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"style-loader": "^0.13.1",
"warning": "^3.0.0",
"webpack": "beta",
"webpack-dev-server": "^1.16.1"
},
"private": true,
"devDependencies": {
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0"
}
}