-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.86 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.86 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@packages/data-context",
"version": "0.0.0-development",
"description": "Centralized data access for the Cypress application",
"main": "index.js",
"browser": "src/index.ts",
"scripts": {
"build": "yarn build:schema && yarn build:graphql && yarn nexus-build",
"build-prod": "tsc || echo 'built, with errors'",
"build:graphql": "graphql-codegen --config ./graphql/graphql-codegen.yml",
"build:schema": "node ./scripts/build.js",
"check-ts": "tsc --noEmit && yarn -s tslint",
"clean": "rimraf --glob \"./{src,test,graphql}/**/*.js\"",
"clean-deps": "rimraf node_modules",
"lint": "eslint --ext .js,.ts,.json, .",
"nexus-build": "ts-node ./scripts/nexus-build.ts",
"test": "yarn test-unit",
"test-debug": "node --experimental-vm-modules --inspect-brk node_modules/.bin/jest --runInBand --testTimeout=600000",
"test-unit": "yarn node --experimental-vm-modules node_modules/.bin/jest --runInBand",
"tslint": "tslint --config ../ts/tslint.json --project . --exclude ./src/gen/nxs.gen.ts"
},
"dependencies": {
"@babel/code-frame": "7.27.1",
"@babel/parser": "7.28.0",
"@graphql-tools/batch-execute": "^8.4.6",
"@graphql-tools/delegate": "8.2.1",
"@graphql-tools/wrap": "8.1.1",
"@packages/stderr-filtering": "0.0.0-development",
"@packages/telemetry": "0.0.0-development",
"@urql/core": "2.4.4",
"@urql/exchange-graphcache": "4.3.6",
"ast-types": "^0.14.2",
"chalk": "4.1.2",
"chokidar": "3.6.0",
"common-path-prefix": "3.0.0",
"cors": "2.8.5",
"cross-fetch": "^4.1.0",
"dataloader": "^2.0.0",
"dayjs": "^1.9.3",
"debug": "^4.4.0",
"dedent": "^0.7.0",
"ejs": "^3.1.10",
"execa": "4.1.0",
"express": "4.22.0",
"express-graphql": "^0.12.0",
"fake-uuid": "^1.0.0",
"front-matter": "^4.0.2",
"fs-extra": "9.1.0",
"get-tsconfig": "4.10.0",
"getenv": "1.0.0",
"globby": "^11.0.1",
"graphql": "^15.5.1",
"graphql-relay": "^0.9.0",
"graphql-resolve-batch": "1.0.3",
"graphql-scalars": "^1.10.0",
"graphql-ws": "^5.5.5",
"http-proxy": "1.18.1",
"isbinaryfile": "^4.0.8",
"launch-editor": "2.9.1",
"lodash": "4.17.23",
"micromatch": "^4.0.8",
"minimatch": "3.1.3",
"nexus": "^1.2.0-next.15",
"node-machine-id": "1.1.12",
"p-defer": "^3.0.0",
"parse-glob": "3.0.4",
"prettier": "2.8.8",
"randexp": "0.5.3",
"react-docgen": "6.0.4",
"recast": "0.23.11",
"semver": "^7.7.3",
"send": "0.19.0",
"server-destroy": "1.0.1",
"simple-git": "^3.27.0",
"stringify-object": "^3.0.0",
"tsx": "4.20.6",
"underscore.string": "^3.3.6",
"ws": "^8.5.0"
},
"devDependencies": {
"@babel/types": "7.28.2",
"@jest/globals": "^30.1.2",
"@packages/config": "0.0.0-development",
"@packages/errors": "0.0.0-development",
"@packages/example": "0.0.0-development",
"@packages/network": "0.0.0-development",
"@packages/resolve-dist": "0.0.0-development",
"@packages/root": "0.0.0-development",
"@packages/scaffold-config": "0.0.0-development",
"@packages/socket": "0.0.0-development",
"@packages/ts": "0.0.0-development",
"@packages/types": "0.0.0-development",
"@tooling/system-tests": "0.0.0-development",
"@types/babel__code-frame": "^7.0.6",
"@types/dedent": "^0.7.2",
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^8.1.5",
"@types/getenv": "^1.0.3",
"@types/graphql-resolve-batch": "1.1.11",
"@types/jest": "^30.0.0",
"@types/micromatch": "4.0.10",
"@types/parse-glob": "3.0.32",
"@types/prettier": "2.4.3",
"@types/server-destroy": "^1.0.4",
"@types/stringify-object": "^3.0.0",
"jest": "^30.1.3",
"nexus": "^1.2.0-next.15",
"ts-jest": "^29.4.4",
"tslint": "^6.1.3"
},
"files": [
"src",
"schemas",
"graphql"
],
"types": "src/index.ts",
"license": "MIT"
}