-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1022 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1022 Bytes
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": "isomorphic-demo",
"description": "An isomorphic React app boilerplate",
"main": "lib/server/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf lib",
"watch-js": "./node_modules/.bin/babel src -d lib --experimental -w",
"dev-server": "node lib/server/webpack",
"server": "nodemon lib/server/server",
"start": "npm run watch-js & npm run dev-server & npm run server",
"build": "npm run clean && ./node_modules/.bin/babel src -d lib --experimental"
},
"keywords": [
"isomorphic",
"react",
"app"
],
"license": "MIT",
"devDependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.14",
"babel-loader": "^5.3.1",
"express": "^4.13.1",
"jade": "^1.11.0",
"node-libs-browser": "^0.5.2",
"react": "^0.13.3",
"react-hot-loader": "^1.2.8",
"react-router": "^0.13.3",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"nodemon": "^1.3.7"
}
}