-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.19 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.19 KB
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": "api-mesh-starter-kit",
"version": "0.0.1",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@graphql-mesh/cli": "0.82.30",
"@graphql-mesh/graphql": "0.34.13",
"@graphql-mesh/json-schema": "0.35.38",
"@graphql-mesh/openapi": "0.33.39",
"@graphql-mesh/plugin-http-details-extensions": "0.1.21",
"@graphql-mesh/runtime": "0.46.21",
"@graphql-mesh/transform-encapsulate": "0.4.21",
"@graphql-mesh/transform-federation": "0.11.14",
"@graphql-mesh/transform-filter-schema": "0.15.23",
"@graphql-mesh/transform-hoist-field": "0.2.21",
"@graphql-mesh/transform-naming-convention": "0.13.22",
"@graphql-mesh/transform-prefix": "0.12.22",
"@graphql-mesh/transform-prune": "0.1.20",
"@graphql-mesh/transform-rename": "0.14.22",
"@graphql-mesh/transform-replace-field": "0.4.20",
"@graphql-mesh/transform-resolvers-composition": "0.13.20",
"@graphql-mesh/transform-type-merging": "0.5.20",
"@graphql-mesh/types": "0.91.12",
"@graphql-mesh/soap": "0.14.25",
"@graphql-mesh/http": "^0.96.9",
"graphql": "^16.6.0",
"@adobe/plugin-hooks": "0.3.3",
"@adobe/plugin-on-fetch": "0.1.1",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-sonarjs": "^0.16.0",
"fastify": "^4.10.2",
"graphql-yoga": "3.1.1"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": ["api-mesh"],
"license": "Apache-2.0",
"scripts": {
"start": "nodemon --watch mesh.json --watch .env node_modules/.bin/aio api-mesh run mesh.json",
"debug": "nodemon --watch mesh.json --watch .env node_modules/.bin/aio api-mesh run mesh.json --debug",
"setupTelemetry": "echo {aio-cli-telemetry: {optOut: false}} > ~/.config/aio",
"setup": "yarn setupTelemetry & aio plugins:install @adobe/aio-cli-plugin-api-mesh",
"postinstall": "yarn setup",
"test:perf": "k6 run k6TestScript.js -e MESH_ENDPOINT=<INSERT_MESH_ENDPOINT_HERE> --vus 1 --duration 60s"
},
"description": "API mesh starter template",
"author": "Adobe Inc.",
"devDependencies": {
"@adobe/aio-cli": "^10.0.0",
"nodemon": "^3.1.3",
"puppeteer": "^23.3.1"
}
}