-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 861 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 861 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
{
"name": "isomorphic-react",
"version": "1.0.0",
"description": "Experimenting with Isomorphic ReactJS",
"main": "index.js",
"scripts": {
"server": "node_modules/.bin/babel-node app.js",
"server-watch": "nodemon app.js --exec node_modules/.bin/babel-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArunMichaelDsouza/isomorphic-react.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArunMichaelDsouza/isomorphic-react/issues"
},
"homepage": "https://github.com/ArunMichaelDsouza/isomorphic-react#readme",
"dependencies": {
"express": "^4.15.4",
"pug": "^2.0.0-rc.4",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1"
}
}