-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.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
{
"name": "go-react-redux-template",
"version": "1.0.0",
"description": "Minmal template for a react/redux app with drag and drop served by Go.",
"repository": {
"type": "git",
"url": "https://github.com/herbat73/go-react-redux-template.git"
},
"main": "index.js",
"scripts": {
"stats": "webpack --profile --json > stats.json",
"test": "echo \"Error: sorry no tests\" && exit 1",
"build": "webpack",
"start": "webpack-dev-server"
},
"keywords": [
"webpack",
"golang",
"redux",
"demo"
],
"author": "",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-plugin-array-includes": "^2.0.2",
"babel-plugin-syntax-class-properties": "^6.3.13",
"babel-plugin-syntax-decorators": "^6.3.13",
"babel-plugin-syntax-object-rest-spread": "^6.3.13",
"babel-plugin-transform-class-properties": "^6.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.2",
"gh-pages": "^1.0.0",
"html-webpack-plugin": "^2.28.0",
"html-webpack-template": "^6.0.1",
"redux-devtools": "^3.4.0",
"redux-devtools-dock-monitor": "^1.1.2",
"redux-devtools-log-monitor": "^1.3.0",
"style-loader": "^0.18.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"uuid": "^3.1.0",
"react": "^15.6.1",
"react-addons-update": "^15.6.0",
"react-dnd": "^2.4.0",
"react-dnd-html5-backend": "^2.4.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"redux": "^3.7.0"
}
}