-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 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
40
41
42
43
44
45
46
{
"name": "react-isomorphic-example",
"version": "0.0.1",
"description": "An example for using react on the server side.",
"keywords": [
"react",
"example",
"isomorphic",
"boilerplate"
],
"main": "index.html",
"scripts": {
"start": "node server.js",
"start:dev": "parallelshell 'gulp' 'nodemon server.js'",
"build": "gulp build --type=production"
},
"author": "@chrtze <chris@webkid.io>",
"license": "MIT",
"devDependencies": {
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-autoprefixer": "^2.1.0",
"gulp-concat": "^2.5.0",
"gulp-connect": "^2.2.0",
"gulp-livereload": "^3.7.0",
"gulp-load-plugins": "^0.8.0",
"gulp-nodemon": "^1.0.5",
"gulp-render": "^0.2.2",
"gulp-size": "^1.2.0",
"gulp-stylus": "^2.0.0",
"gulp-uglifyjs": "^0.6.0",
"gulp-util": "^3.0.3",
"gulp-watch": "^4.1.1",
"gulp-webpack": "^1.2.0",
"nodemon": "^1.3.7",
"parallelshell": "^1.0.4"
},
"dependencies": {
"express": "^4.11.2",
"jsx-loader": "^0.12.2",
"node-jsx": "^0.12.4",
"react": "^0.12.2",
"react-router": "^0.12.0",
"reflux": "^0.2.5"
}
}