-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "relay-sink",
"version": "0.1.2",
"description": "Use Relay to fetch and store data outside of a React component.",
"main": "lib/index.js",
"author": "Andrew Clark <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib data/schema.json data/schema.graphql",
"lint": "eslint src data",
"update-schema": "babel-node scripts/updateSchema.js",
"test": "npm run update-schema && karma start",
"prepublish": "npm run clean && npm run build"
},
"peerDependencies": {
"react-relay": "^0.3.2"
},
"dependencies": {
"lodash": "^3.10.1"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-relay-plugin": "^0.2.5",
"babel-runtime": "^5.8.25",
"chai": "^3.3.0",
"eslint": "^1.5.1",
"eslint-config-airbnb": "0.0.9",
"eslint-plugin-react": "^3.4.2",
"graphql": "^0.4.4",
"graphql-relay": "^0.3.2",
"karma": "^0.13.10",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-phantomjs-shim": "^1.1.1",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"lodash": "^3.10.1",
"lodash-fp": "^0.10.2",
"mocha": "^2.3.3",
"phantomjs": "^1.9.18",
"react": "^0.14.0-rc1",
"react-addons-test-utils": "^0.14.0-rc1",
"react-dom": "^0.14.0-rc1",
"react-relay": "^0.3.2",
"rimraf": "^2.4.3",
"sinon": "^1.17.1",
"webpack": "^1.12.2"
}
}