-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
96 lines (96 loc) · 2.83 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "react-universal",
"version": "2.0.0",
"description": "A universal, type checked, linted, graphql backed, starter-kit with react, redux, and react-router.",
"main": "index.js",
"scripts": {
"prebuild": "npm run relay -s",
"build": "NODE_ENV=production `npm bin`/webpack",
"relay": "./scripts/relay-schema.js",
"prestart": "npm run relay -s && npm run build -s",
"start": "./scripts/start",
"stop": "./scripts/stop",
"poststop": "rm -rf ./dist/*",
"test": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdebotton/react-universal.git"
},
"author": "Christian de Botton <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/cdebotton/react-universal/issues"
},
"homepage": "https://github.com/cdebotton/react-universal#readme",
"dependencies": {
"babel": "^5.8.23",
"babel-plugin-react-transform": "^1.1.1",
"concurrently": "^0.1.1",
"deep-equal": "^1.0.1",
"express": "^4.13.3",
"express-graphql": "^0.4.0",
"font-awesome": "^4.4.0",
"forever": "^0.15.1",
"graphql": "^0.4.7",
"graphql-relay": "^0.3.2",
"history": "^1.11.1",
"immutable": "^3.7.5",
"isomorphic-fetch": "^2.1.1",
"koa": "^1.0.0",
"koa-compress": "^1.0.8",
"koa-favicon": "^1.2.0",
"koa-jade": "^2.0.0",
"koa-mount": "^1.3.0",
"koa-proxy": "^0.4.0",
"koa-session": "^3.3.1",
"koa-static": "^1.4.9",
"normalize.css": "^3.0.3",
"qs": "^5.2.0",
"react": "^0.14.0",
"react-css-modules": "^3.5.1",
"react-dom": "^0.14.0",
"react-redux": "^3.0.1",
"react-relay": "^0.3.2",
"react-router": "^1.0.0-rc2",
"redux": "^3.0.2",
"redux-devtools": "^2.1.5",
"redux-form": "^2.1.0",
"redux-router": "^1.0.0-beta3",
"redux-thunk": "^1.0.0",
"spawn-monitor": "^1.1.5",
"thenify": "^3.1.0",
"yargs": "^3.26.0"
},
"devDependencies": {
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-runtime": "^5.8.25",
"chalk": "^1.1.1",
"clean-webpack-plugin": "^0.1.3",
"css-loader": "^0.19.0",
"cssnext-loader": "^1.0.1",
"debug": "^2.2.0",
"empty": "^0.10.1",
"eslint": "^1.6.0",
"eslint-config-airbnb": "^0.1.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-babel": "^2.1.1",
"eslint-plugin-react": "^3.5.1",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"gaze": "^0.5.1",
"json-loader": "^0.5.3",
"pty.js": "^0.3.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.1.1",
"redux-devtools": "^2.1.5",
"style-loader": "^0.12.4",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
}
}