-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
45 lines (45 loc) · 1.08 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
39
40
41
42
43
44
45
{
"name": "react-server-tutorial",
"version": "0.0.0",
"description": "Code from the React tutorial, modified to add Server-Side Rendering, React Router, and Redux.",
"main": "server.js",
"dependencies": {
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"body-parser": "^1.4.3",
"express": "^4.4.5",
"marked": "^0.3.5",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"redux": "^3.3.1"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/reactjs/react-tutorial.git"
},
"keywords": [
"react",
"redux",
"react router",
"server side rendering",
"universal",
"isomorphic",
"tutorial",
"comment",
"example"
],
"bugs": {
"url": "https://github.com/firasd/react-server-tutorial/issues"
},
"homepage": "https://github.com/firasd/react-server-tutorial",
"engines": {
"node": "0.12.x"
}
}