This repository has been archived by the owner on Aug 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "persistgraphql",
"version": "0.3.11",
"description": "A build tool for GraphQL projects.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"typescript": {
"definition": "lib/index.d.ts"
},
"scripts": {
"pretest": "npm run compile",
"test": "mocha --reporter spec --full-trace lib/test/tests.js",
"posttest": "npm run lint",
"compile": "tsc",
"lint": "tslint -c tslint.json test/**/*.ts; tslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Poincare/apollo-query-whitelisting.git"
},
"author": "Dhaivat Pandya",
"license": "MIT",
"bugs": {
"url": "https://github.com/Poincare/persistgraphql/issues"
},
"homepage": "https://github.com/Poincare/persistgraphql#readme",
"bin": {
"persistgraphql": "./bin/persistgraphql"
},
"dependencies": {
"apollo-client": "^1.1",
"graphql": ">=0.9.4 <0.11",
"graphql-tag": "^2.0.0",
"lodash": "^4.17.4",
"whatwg-fetch": "^2.0.3",
"yargs": "^7.1.0"
},
"devDependencies": {
"@types/chai": "^3.5.1",
"@types/express": "^4.0.35",
"@types/lodash": "^4.14.63",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.14",
"@types/yargs": "^6.6.0",
"chai": "^3.5.0",
"es6-promise": "^4.1.0",
"fetch-mock": "^5.10.0",
"isomorphic-fetch": "^2.2.1",
"mocha": "^3.3.0",
"source-map-support": "^0.4.15",
"tslint": "^5.1.0",
"typescript": "^2.3.1"
},
"optionalDependencies": {
"@types/graphql": "^0.9.0",
"@types/isomorphic-fetch": "0.0.34"
}
}