-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 944 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
{
"name": "harp-browserify-react-rrouter",
"version": "1.0.0",
"description": "Template project for using browserify and watchify along with harp.",
"keywords": [
"harp",
"browserify",
"watchify",
"react",
"rrouter"
],
"dependencies": {
"bluebird": "^2.1.1",
"envify": "^1.2.1",
"react": "^0.10.0",
"react-async": "^0.9.4",
"rrouter": "^0.3.2"
},
"devDependencies": {
"browserify": "^4.1.10",
"harp": "^0.12.1",
"reactify": "^0.13.1",
"watchify": "^0.10.2"
},
"scripts": {
"watch": "./node_modules/.bin/harp server public & npm run watch-js",
"watch-js": "./node_modules/.bin/watchify --debug -t [reactify --es6 --everything] public/scripts/app.js -o public/app-bundle.js",
"bundle-js": "./node_modules/.bin/browserify --debug -t [reactify --es6 --everything] public/scripts/app.js > public/app-bundle.js"
},
"author": "@torgeir",
"license": "mit"
}