-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
90 lines (90 loc) · 2.68 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
{
"name": "react-router-relay",
"version": "0.14.0",
"description": "Relay integration for React Router",
"files": [
"es",
"lib"
],
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"build": "npm run build-cjs && npm run build-es",
"build-cjs": "rimraf lib && cross-env BABEL_ENV=cjs babel src -d lib",
"build-es": "rimraf es && cross-env BABEL_ENV=es babel src -d es",
"build-fixtures": "babel-node test/fixtures/updateSchema.js",
"lint": "eslint src test *.js",
"prepublish": "npm run build",
"tdd": "cross-env NODE_ENV=test karma start",
"test": "npm run build-fixtures && npm run lint && npm run testonly",
"testonly": "npm run tdd -- --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/relay-tools/react-router-relay.git"
},
"keywords": [
"relay",
"react",
"router"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/relay-tools/react-router-relay/issues"
},
"homepage": "https://github.com/relay-tools/react-router-relay#readme",
"dependencies": {
"babel-runtime": "^6.23.0",
"invariant": "^2.2.2",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react-static-container": "^1.0.1"
},
"peerDependencies": {
"react": "^0.14.9 || >=15.3.0",
"react-relay": ">=1.0.0",
"react-router": "^2.3.0 || ^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-relay": "^1.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"cross-env": "^5.0.0",
"eslint": "^3.19.0",
"eslint-config-4catalyzer-react": "^0.2.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.10.3",
"graphql": "^0.10.1",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sinon-chai": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"mocha": "^3.4.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-relay": "^1.0.0",
"react-router": "^2.8.0",
"relay-local-schema": "^0.5.5",
"rimraf": "^2.6.1",
"sinon": "^2.3.2",
"sinon-chai": "^2.10.0",
"webpack": "^2.6.1"
}
}