-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1 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
{
"name": "golang-react",
"author": "Andrew Odewahn",
"version": "0.0.1",
"description": "",
"main": "",
"scripts": {
"frontend": "npm run watch & npm run backend & npm run serve",
"watch": "watchify -o dist/bundle.js src/main.js -dv",
"serve": "python -m SimpleHTTPServer",
"backend": "cd backend; gin"
},
"dependencies": {
"immutable": "^3.7.6",
"history": "^1.17.0",
"react": "^0.14.7",
"react-dom": "^0.14.3",
"react-mdl": "^1.4.1",
"react-redux": "^4.0.6",
"react-router": "^2.0.1",
"redux": "^3.0.5",
"redux-thunk": "^1.0.3"
},
"devDependencies": {
"local-web-server": "^1.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"reactify": "^1.1.1",
"watchify": "^3.6.1"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
]
]
}
}