mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-12 02:00:06 -06:00
54 lines
1.7 KiB
JSON
54 lines
1.7 KiB
JSON
{
|
|
"name": "@packages/graphql",
|
|
"version": "0.0.0-development",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"browser": "src/index.ts",
|
|
"scripts": {
|
|
"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.17.1",
|
|
"express-graphql": "^0.12.0",
|
|
"getenv": "1.0.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",
|
|
"rimraf": "3.0.2",
|
|
"snap-shot-it": "7.9.3",
|
|
"tslint": "^6.1.3"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"schemas"
|
|
],
|
|
"types": "src/index.ts"
|
|
}
|