-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 KB
/
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
33
34
35
36
37
38
{
"name": "react-server-render",
"version": "1.0.0",
"description": "A React server rendering example",
"main": "index.js",
"scripts": {
"build": "gulp",
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MiguhRuiz/react-server-render.git"
},
"author": "Miguh Ruiz <[email protected]> (https://miguhruiz.xyz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MiguhRuiz/react-server-render/issues"
},
"homepage": "https://github.com/MiguhRuiz/react-server-render#readme",
"dependencies": {
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.11.6",
"express": "^4.14.0",
"gulp": "^3.9.1",
"react": "^15.3.0",
"react-dom": "^15.3.0"
},
"devDependencies": {
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"gulp": "^3.9.1",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^2.0.0",
"vinyl-source-stream": "^1.1.0"
}
}