-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.09 KB
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
37
38
39
{
"name": "isomorphic-javascript",
"version": "0.0.1",
"description": "A boilerplate for isomorphic React apps",
"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"
],
"author": "Sean Amarasinghe",
"license": "MIT",
"devDependencies": {
"babel": "^5.5.6",
"babel-core": "^5.5.6",
"babel-loader": "^5.1.4",
"ejs": "^2.3.4",
"express": "^4.12.4",
"node-libs-browser": "^0.5.2",
"npm-run-all": "^1.2.11",
"react": "^0.13.3",
"react-hot-loader": "^1.2.7",
"react-router": "^0.13.3",
"webpack": "^1.9.10",
"webpack-dev-server": ">=3.1.11"
},
"dependencies": {
"nodemon": "^1.3.7"
}
}