-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "apollo-local-network-interface",
"version": "1.0.0",
"description": "Use Apollo without a GraphQL server (porting of relay-local-schema)",
"main": "./lib/src/index.js",
"typings": "./lib/src/index.d.ts",
"scripts": {
"release": "./scripts/release.sh",
"compile": "tsc -p tsconfig.json",
"dev": "npm run watch",
"watch": "tsc -w",
"pretest": "npm run compile",
"test": "npm run testonly --",
"posttest": "npm run lint",
"testonly": "mocha --reporter spec --full-trace lib/test/index.js",
"lint": "grunt tslint"
},
"author": "mstn",
"license": "CC0",
"dependencies": {
"apollo-client": "^1.2.0"
},
"devDependencies": {
"@types/chai": "^3.4.32",
"@types/chai-as-promised": "0.0.30",
"@types/mocha": "^2.2.32",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"colors": "^1.1.2",
"es6-promise": "^4.0.5",
"graphql-tag": "^2.0.0",
"grunt": "^1.0.1",
"grunt-tslint": "^5.0.1",
"mocha": "^3.1.2",
"source-map-support": "^0.4.5",
"tslint": "^5.2.0",
"typed-graphql": "^1.0.2",
"typescript": "^2.3.2"
},
"optionalDependencies": {
"@types/async": "^2.0.31",
"isomorphic-fetch": "^2.2.1",
"@types/node": "^7.0.16",
"@types/promises-a-plus": "0.0.26",
"@types/redux": "^3.6.31",
"@types/sinon": "^2.2.0"
}
}