forked from elyseko/iso-react-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.4 KB
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
{
"name": "iso-react-demo",
"version": "0.0.0",
"description": "Demo of isomorphic react app",
"main": "src/server/app.js",
"scripts": {
"start": "./node_modules/.bin/nodemon public/build/server.js",
"debug": "node-debug public/build/server.js",
"test": "./node_modules/.bin/jasmine-node test --autoTest"
},
"repository": {
"type": "git",
"url": "https://elyseko@github.com/elyseko/iso-react-demo.git"
},
"keywords": [
"react",
"isomorphic"
],
"author": "Elyse Kolker Gordon",
"license": "MIT",
"bugs": {
"url": "https://github.com/elyseko/iso-react-demo/issues"
},
"homepage": "https://github.com/elyseko/iso-react-demo",
"dependencies": {
"babel-core": "^5.8.22",
"babel-loader": "^5.3.2",
"babel-plugin-dev-expression": "^0.1.0",
"babel-runtime": "^5.8.20",
"deep-equal": "^1.0.1",
"ejs": "^2.3.3",
"ejs-loader": "^0.2.1",
"express": "^4.13.3",
"history": "^1.9.0",
"http-proxy": "^1.11.1",
"invariant": "^2.1.0",
"json-loader": "^0.5.2",
"react": "^0.14.0-beta3",
"react-dom": "^0.14.0-beta3",
"react-router": "^1.0.0-beta4",
"style-loader": "^0.12.3",
"stylus-loader": "^1.2.1",
"superagent": "^1.3.0",
"warning": "^2.0.0",
"webpack": "^1.11.0"
},
"devDependencies": {
"browser-sync": "^2.9.6",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"nodemon": "^1.7.0"
}
}