-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.91 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.91 KB
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
{
"name": "spring-boot-react",
"version": "0.0.1",
"description": "",
"main": "src/main/react/software/wecreate/hadouken/index.js",
"author": "Matthew Struensee <mstruensee@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rimraf ./public && mkdir public",
"lint": "eslint ./app",
"predev": "npm run clean && npm run lint",
"dev": "webpack -d",
"build": "webpack --config webpack.production.config.babel.js -p",
"prewatch": "npm run clean",
"watch": "webpack -d --watch"
},
"dependencies": {
"@wecreatesoftware/redux-higher-order-reducers": "3.0.1",
"es6-promise": "^4.2.5",
"prop-types": "15.6.2",
"react": "16.7.0",
"react-dom": "16.7.0",
"react-redux": "6.0.0",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"redux": "4.0.1",
"redux-observable": "1.0.0",
"redux-thunk": "2.3.0",
"rest": "2.0.0",
"rxjs": "6.3.3",
"serialize-javascript": "1.3.0"
},
"devDependencies": {
"autoprefixer": "6.4.0",
"babel-core": "6.26.3",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-polyfill": "6.9.1",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"css-loader": "0.25.0",
"eslint": "3.0.1",
"eslint-plugin-react": "6.2.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"html-webpack-plugin": "2.22.0",
"node-sass": "4.11.0",
"postcss-loader": "0.11.0",
"rimraf": "2.5.4",
"sass-loader": "4.0.1",
"style-loader": "0.13.1",
"url-loader": "1.1.2",
"webpack": "1.13.1"
}
}