-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
32 lines (32 loc) · 1.05 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
{
"name": "livereactload-basic-usage-example",
"version": "2.0.0",
"author": "Matti Lankinen <[email protected]> (https://github.com/milankinen)",
"license": "MIT",
"scripts": {
"start": "babel-node server.js",
"bundle:prod": "NODE_ENV=production browserify site.js -t babelify -g envify -g uglifyify > bundle.js",
"watch": "npm run watch:server & npm run watch:bundle & wait",
"watch:server": "nodemon --exec babel-node --ignore bundle.js -- server.js",
"watch:bundle": "watchify site.js -v -t babelify -g envify -p livereactload -o bundle.js"
},
"dependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"envify": "^3.4.1",
"express": "^4.14.0",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"uglifyify": "^3.0.2"
},
"devDependencies": {
"babel-plugin-react-transform": "^2.0.2",
"livereactload": "latest",
"nodemon": "^1.9.2",
"react-proxy": "^1.1.8",
"watchify": "^3.7.0"
}
}