mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-13 02:40:22 -05:00
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"name": "@packages/graphql",
|
|
"version": "0.0.0-development",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"browser": "src/index.ts",
|
|
"scripts": {
|
|
"build": "node script/build-schema.js",
|
|
"types": "tsc --noEmit",
|
|
"build-prod": "yarn build && tsc",
|
|
"clean-deps": "rm -rf node_modules",
|
|
"clean": "rm src/**/*.js && rm src/*.js || echo 'cleaned'",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"dedent": "^0.7.0",
|
|
"express": "4.17.1",
|
|
"express-graphql": "^0.12.0",
|
|
"graphql": "^15.5.1",
|
|
"graphql-scalars": "^1.10.0",
|
|
"nexus": "^1.1.0",
|
|
"nexus-decorators": "^0.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/dedent": "^0.7.0",
|
|
"chai": "^4.2.0",
|
|
"mocha": "^8.1.3",
|
|
"snap-shot-it": "7.9.3"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"schema.graphql"
|
|
],
|
|
"types": "src/index.ts"
|
|
}
|