forked from kamilkisiela/graphql-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.71 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
91
92
93
94
95
96
{
"name": "graphql-config",
"version": "3.3.0",
"description": "The easiest way to configure your development environment with your GraphQL schema (supported by most tools, editors & IDEs)",
"sideEffects": false,
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"scripts": {
"prepublishOnly": "yarn build",
"clean": "rimraf dist",
"prebuild": "yarn clean && yarn json-schema",
"build": "bob build --single",
"prepack": "bob prepack",
"format": "prettier --write \"{src,test}/**/*.{ts,graphql}\"",
"lint": "eslint \"{src,test}/**/*.ts\"",
"test": "jest",
"release": "npm publish dist",
"release:canary": "yarn build && node ./scripts/canary.js && npm publish dist --tag canary",
"json-schema": "typescript-json-schema src/types.ts IGraphQLConfig --out config-schema.json --ignoreErrors --required --titles && prettier --write config-schema.json"
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
},
"dependencies": {
"@endemolshinegroup/cosmiconfig-typescript-loader": "3.0.2",
"@graphql-tools/graphql-file-loader": "^6.0.0",
"@graphql-tools/json-file-loader": "^6.0.0",
"@graphql-tools/load": "^6.0.0",
"@graphql-tools/merge": "^6.0.0",
"@graphql-tools/url-loader": "^6.0.0",
"@graphql-tools/utils": "^7.0.0",
"cosmiconfig": "7.0.0",
"cosmiconfig-toml-loader": "1.0.0",
"minimatch": "3.0.4",
"string-env-interpolation": "1.0.1"
},
"devDependencies": {
"@types/jest": "26.0.22",
"@types/node": "14.14.41",
"@typescript-eslint/parser": "4.22.0",
"bob-the-bundler": "1.2.0",
"del": "6.0.0",
"eslint": "7.25.0",
"graphql": "15.5.0",
"husky": "6.0.0",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"make-dir": "3.1.0",
"parent-module": "2.0.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-jest": "26.5.5",
"tslib": "2.2.0",
"typescript": "4.2.4",
"typescript-json-schema": "0.50.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kamilkisiela/graphql-config.git"
},
"homepage": "https://graphql-config.com",
"keywords": [
"graphql",
"config",
"relay",
"apollo"
],
"author": {
"email": "kamil.kisiela@gmail.com",
"name": "Kamil Kisiela",
"url": "https://github.com/kamilkisiela"
},
"license": "MIT",
"buildOptions": {
"copy": [
"config-schema.json"
]
},
"lint-staged": {
"{src,test}/**/*.{ts,graphql}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">= 10.0.0"
}
}