-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 1.92 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
{
"name": "graphql-compose-json",
"version": "0.0.0-semantically-released",
"description": "This is a plugin for `graphql-compose`, which generates GraphQLTypes from any JSON.",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/graphql-compose/graphql-compose-json.git"
},
"keywords": [
"graphql",
"compose",
"rest"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/graphql-compose/graphql-compose-json/issues"
},
"homepage": "https://github.com/graphql-compose/graphql-compose-json",
"peerDependencies": {
"graphql-compose": "^7.0.4 || ^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@types/express": "4.17.12",
"@types/express-graphql": "^0.9.0",
"@types/jest": "26.0.23",
"@types/node": "15.6.1",
"@types/node-fetch": "2.5.10",
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "4.25.0",
"cross-env": "7.0.3",
"eslint": "7.27.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"express": "^4.17.1",
"express-graphql": "0.12.0",
"graphql": "15.5.0",
"graphql-compose": "9.0.0",
"jest": "27.0.3",
"node-fetch": "2.6.1",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"semantic-release": "17.4.3",
"ts-jest": "27.0.1",
"ts-node": "10.0.0",
"typescript": "4.3.2"
},
"scripts": {
"build": "rimraf lib && tsc -p ./tsconfig.build.json",
"watch": "jest --watch",
"coverage": "jest --coverage --maxWorkers 2",
"lint": "yarn eslint && yarn tscheck",
"eslint": "eslint --ext .ts ./src",
"tscheck": "tsc --noEmit",
"test": "cross-env NODE_ENV=test yarn coverage && yarn lint",
"semantic-release": "semantic-release",
"fixture-demo": "ts-node ./src/__fixtures__/app.ts"
}
}