forked from wadahiro/gin-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 931 Bytes
/
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
{
"name": "golang-web-boilerplate",
"version": "0.2.0",
"description": "",
"main": "server/js/index.jsx",
"author": "",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack -p --config ./client/webpack/webpack.config.js && go-bindata -o ./server/bindata.go assets/... && gox -osarch=\"windows/amd64 linux/amd64\" -output=dist/web_{{.OS}}_{{.Arch}} ./server/...",
"bindata": "go-bindata -debug -o ./server/bindata.go assets/...",
"dev": "webpack -w --config ./client/webpack/webpack.config.js"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"cross-env": "^1.0.7",
"node-dev": "^3.0.0",
"webpack": "^1.12.12"
},
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7",
"whatwg-fetch": "^0.11.0"
}
}