-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 850 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
29
30
31
32
33
34
35
36
{
"name": "react-router-upgrade",
"version": "1.0.0",
"description": "Upgrade React and React-Router to latest versions",
"main": "index.js",
"scripts": {
"watch": "watchify -d app/browser.js -o dist/bundle.js -v",
"build": "browserify -d app/browser.js > dist/bundle.js",
"start": "babel-node server"
},
"author": "Nigel Reoch",
"license": "ISC",
"devDependencies": {
"babel": "5.5.6",
"babelify": "6.1.2",
"browserify": "12.0.1",
"express": "4.13.3",
"hbs": "4.0.0",
"history": "1.13.1",
"react": "0.14.3",
"react-dom": "0.14.3",
"react-router": "2.0.0-rc5",
"watchify": "3.6.1"
},
"browserify": {
"transform": [
"babelify"
]
},
"dependencies": {
"axios": "^0.9.1",
"react-redux": "4.2.1",
"redux": "3.2.1",
"redux-promise": "^0.5.1"
}
}