-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 900 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 900 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
{
"name": "isomorphic-javascript-example",
"version": "1.0.0",
"description": "The most simplistic, isomorphic JavaScript example using React and Node.js",
"main": "./public/server.js",
"repository": {
"type": "git",
"url": "https://github.com/jbillmann/isomorphic-javascript-example.git"
},
"bugs": {
"url": "https://github.com/jbillmann/isomorphic-javascript-example/issues"
},
"keywords": [
"node",
"react",
"isomorphic",
"sample",
"example"
],
"author": "Jeremiah Billmann",
"license": "MIT",
"homepage": "https://github.com/jbillmann/isomorphic-javascript-example",
"devDependencies": {
"browserify": "^9.0.8",
"gulp": "^3.8.11",
"gulp-react": "^3.0.1",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"express": "^4.12.3",
"jade": "^1.10.0",
"react": "^0.13.1",
"react-router": "^0.13.3"
}
}