forked from vlucas/universal-react-helloworld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 799 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
{
"name": "universal-react",
"version": "1.0.0",
"description": "Universal React.js starter with the minimum possible code",
"main": "lib/server.js",
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js src --out-dir lib --plugins transform-react-jsx --presets es2015",
"bundle": "./node_modules/browserify/bin/cmd.js lib/client.js -o public/js/bundle.js",
"start": "npm run build && npm run bundle && node lib/server.js"
},
"author": "Vance Lucas",
"license": "BSD",
"dependencies": {
"ejs": "^2.3.4",
"express": "^4.13.3",
"react": "^0.14.2",
"react-dom": "^0.14.2"
},
"devDependencies": {
"browserify": "^12.0.1",
"babel-cli": "^6.1.2",
"babel-plugin-transform-react-jsx": "^6.0.18",
"babel-preset-es2015": "^6.1.2"
}
}