-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
65 lines (65 loc) · 1.65 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
{
"name": "@r/platform",
"version": "0.17.1",
"description": "A set of tools to enable easy universal rendering and page navigation on a React + Redux stack",
"main": "platform.js",
"scripts": {
"lint": "eslint lib",
"build": "node compile.js",
"watch": "npm run build -- --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nramadas/r-platform.git"
},
"keywords": [
"reddit",
"platform",
"universal",
"isomorphic"
],
"author": "nramadas",
"license": "MIT",
"bugs": {
"url": "https://github.com/nramadas/r-platform/issues"
},
"homepage": "https://github.com/nramadas/r-platform#readme",
"dependencies": {
"chai": "3.5.0",
"chai-enzyme": "0.4.2",
"enzyme": "2.2.0",
"mocha": "2.4.5",
"react-addons-test-utils": "15.0.1",
"sinon": "1.17.3",
"sinon-chai": "2.8.0"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-loader": "6.2.4",
"babel-plugin-transform-class-properties": "6.6.0",
"babel-plugin-transform-runtime": "6.7.5",
"babel-polyfill": "6.7.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-2": "6.5.0",
"eslint": "^2.8.0",
"eslint-plugin-babel": "^3.2.0",
"node-notifier": "4.5.0",
"webpack": "1.13.0"
},
"peerDependencies": {
"babel-core": "^6.x",
"koa": "^2.x",
"koa-bodyparser": "^3.x",
"koa-router": "^7.x",
"koa-static": "^3.x",
"react": "^15.x",
"react-redux": "^4.x",
"react-dom": "^15.x",
"redux": "^3.x",
"reselect": "^2.x",
"lodash": "^4.x",
"@r/middleware": "^x"
}
}