mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-18 05:00:02 -06:00
* chore(deps): update dependency express to v4.19.2 [security] * empty commit * dependency: add changelog item --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jennifer Shehane <jennifer@cypress.io>
81 lines
2.8 KiB
JSON
81 lines
2.8 KiB
JSON
{
|
|
"name": "@packages/graphql",
|
|
"version": "0.0.0-development",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"browser": "src/index.ts",
|
|
"scripts": {
|
|
"nexus-build": "ts-node ./scripts/nexus-build.ts",
|
|
"build": "graphql-codegen --config graphql-codegen.yml",
|
|
"build-prod": "tsc || echo 'built, with errors'",
|
|
"check-ts": "tsc --noEmit && yarn -s tslint",
|
|
"clean-deps": "rimraf node_modules",
|
|
"clean": "rimraf './{src,test}/**/*.js'",
|
|
"tslint": "tslint --config ../ts/tslint.json --project .",
|
|
"postinstall": "echo '@packages/graphql needs: yarn build'",
|
|
"test-unit": "mocha -r @packages/ts/register test/unit/**/*.spec.ts --config ./test/.mocharc.js --exit",
|
|
"test-integration": "mocha -r @packages/ts/register test/integration/**/*.spec.ts --config ./test/.mocharc.js --exit",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, ."
|
|
},
|
|
"dependencies": {
|
|
"@graphql-tools/delegate": "8.2.1",
|
|
"@graphql-tools/wrap": "8.1.1",
|
|
"@urql/core": "2.4.4",
|
|
"dedent": "^0.7.0",
|
|
"express": "4.19.2",
|
|
"express-graphql": "^0.12.0",
|
|
"graphql": "^15.5.1",
|
|
"graphql-resolve-batch": "1.0.3",
|
|
"graphql-scalars": "^1.10.0",
|
|
"graphql-ws": "^5.5.5",
|
|
"nexus": "^1.2.0-next.15",
|
|
"server-destroy": "^1.0.1",
|
|
"ws": "^8.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@packages/data-context": "0.0.0-development",
|
|
"@packages/root": "0.0.0-development",
|
|
"@packages/types": "0.0.0-development",
|
|
"@types/dedent": "^0.7.0",
|
|
"@types/graphql-resolve-batch": "1.1.6",
|
|
"@types/micromatch": "4.0.2",
|
|
"@types/server-destroy": "^1.0.1",
|
|
"chai": "^4.2.0",
|
|
"mocha": "^8.1.3",
|
|
"snap-shot-it": "7.9.3",
|
|
"tslint": "^6.1.3"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"schemas"
|
|
],
|
|
"types": "src/index.ts",
|
|
"nx": {
|
|
"targets": {
|
|
"nexus-build": {
|
|
"outputs": [
|
|
"{projectRoot}/src/gen/nxs.gen.ts",
|
|
"{projectRoot}/schemas/schema.graphql"
|
|
]
|
|
},
|
|
"build": {
|
|
"dependsOn": [
|
|
"nexus-build"
|
|
],
|
|
"outputs": [
|
|
"{workspaceRoot}/packages/frontend-shared/cypress/support/generated/test-graphql-types.gen.ts",
|
|
"{projectRoot}/src/gen/test-cloud-graphql-types.gen.ts",
|
|
"{projectRoot}/src/gen/cloud-source-types.gen.ts",
|
|
"{workspaceRoot}/packages/data-context/src/gen/graphcache-config.gen.ts",
|
|
"{workspaceRoot}/packages/launchpad/src/generated/graphql.ts",
|
|
"{workspaceRoot}/packages/app/src/generated/graphql.ts",
|
|
"{workspaceRoot}/packages/frontend-shared/src/generated/graphql.ts",
|
|
"{workspaceRoot}/packages/launchpad/src/generated/graphql-test.ts",
|
|
"{workspaceRoot}/packages/app/src/generated/graphql-test.ts",
|
|
"{workspaceRoot}/packages/frontend-shared/src/generated/graphql-test.ts"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|