-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.62 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"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/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/register": "^7.9.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"body-parser": "^1.4.3",
"errorhandler": "^1.5.1",
"express": "^4.4.5",
"express-react-views": "^0.11.0",
"marked": "^0.3.5",
"moment": "^2.25.1",
"mongoose": "^5.9.11",
"prop-types": "^15.7.2",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"redux": "^3.3.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.9.4",
"morgan": "^1.10.0",
"nodemon": "^2.0.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js --experimental-modules"
},
"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"
}
}