-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
74 lines (74 loc) · 2.23 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
{
"name": "graphql-compose-elasticsearch",
"version": "0.0.0-semantically-released",
"description": "Elastic search via GraphQL",
"files": [
"lib"
],
"main": "lib/index.js",
"module": "mjs/index.mjs",
"repository": {
"type": "git",
"url": "https://github.com/nodkz/graphql-compose-elasticsearch.git"
},
"keywords": [
"graphql",
"elastic",
"elasticsearch",
"graphql-compose"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nodkz/graphql-compose-elasticsearch/issues"
},
"homepage": "https://github.com/nodkz/graphql-compose-elasticsearch#readme",
"dependencies": {
"dox": "^0.9.0"
},
"peerDependencies": {
"elasticsearch": "^16.0.0 || ^15.0.0 || ^14.0.0 || ^13.0.0 || ^12.0.0",
"graphql-compose": "^7.0.4 || ^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@types/elasticsearch": "5.0.38",
"@types/express": "4.17.13",
"@types/jest": "27.0.2",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"elasticsearch": "16.7.2",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-prettier": "4.0.0",
"express": "^4.17.1",
"express-graphql": "0.12.0",
"graphql": "15.6.1",
"graphql-compose": "9.0.3",
"jest": "27.2.4",
"nodemon": "2.0.13",
"npm-run-all": "^4.1.5",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"semantic-release": "17.4.7",
"ts-jest": "27.0.5",
"ts-node": "10.2.1",
"ts-node-dev": "1.1.8",
"typescript": "4.4.3"
},
"scripts": {
"build": "rimraf lib && tsc -p ./tsconfig.build.json",
"dev": "npm run demo1",
"demo1": "yarn demo1:seed && ts-node-dev ./examples/elastic56/index.ts",
"demo1:seed": "ts-node ./examples/elastic56/seedData.ts",
"demo2": "ts-node-dev ./examples/differentVersions/index.ts",
"watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "eslint --ext .ts ./src",
"test": "npm run coverage && npm run lint",
"semantic-release": "semantic-release",
"docker": "npm run docker:v5",
"docker:v2": "node ./scripts/docker/start 2 & wait",
"docker:v5": "node ./scripts/docker/start 5 & wait"
}
}