-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "@graphitation/graphql-js-operation-payload-generator",
"description": "Generates a payload for a given GraphQL operation expressed in graphql-js AST and a GraphQL Schema.",
"license": "MIT",
"version": "0.12.10",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/graphitation.git",
"directory": "packages/graphql-js-operation-payload-generator"
},
"main": "./src/index.ts",
"scripts": {
"build": "monorepo-scripts build",
"lint": "monorepo-scripts lint",
"test": "monorepo-scripts test",
"types": "monorepo-scripts types",
"just": "monorepo-scripts",
"test:schema-types": "ts-node ./scripts/graphql-codegen.ts"
},
"dependencies": {
"@types/relay-test-utils": ">=17.0.0",
"deepmerge": "^4.2.2",
"invariant": "^2.2.4",
"graphql": "^15.0.0"
},
"devDependencies": {
"@graphitation/graphql-js-tag": "^0.9.4",
"@graphitation/graphql-codegen-typescript-typemap-plugin": "^0.1.9",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.5.1",
"@types/jest": "^26.0.22",
"monorepo-scripts": "*",
"relay-test-utils-internal": "^12.0.0",
"ts-node": "^10.8.1"
},
"publishConfig": {
"main": "./lib/index",
"types": "./lib/index.d.ts",
"access": "public",
"module": "./lib/index.mjs",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
}
}
}