-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
32 lines (32 loc) · 1.03 KB
/
package.json
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
{
"name": "root",
"private": true,
"version": "2.0.0",
"scripts": {
"genall": "pnpm run -r gen",
"tscall": "pnpm run -r --filter '@genql/*' tsc",
"buildall": "pnpm run -r --filter '@genql/*' build",
"test": "pnpm run -r test",
"watch": "pnpm run -r watch",
"play": "node -r sucrase/register cli/src/cli.ts",
"integration": "cd integration-tests && pnpm gen && tsc && pnpm test",
"examplecli": "pnpm play -o example/generated -e https://graphql-compose.herokuapp.com/northwind/",
"publ": "pnpm buildall && lerna publish minor",
"runexample": "node -r sucrase/register example/example.ts"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"esno": "0.14.1",
"graphql": "^16.6.0",
"lerna": "^6.0.3",
"native-fetch": "^4.0.2",
"sucrase": "^3.29.0",
"typescript": "~5.3.3"
},
"dependencies": {
"@changesets/cli": "^2.27.1"
}
}