forked from remorses/genql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 969 Bytes
/
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
{
"name": "genql",
"private": true,
"version": "2.0.0",
"workspaces": [
"cli",
"runtime",
"website",
"example-usage",
"try-clients",
"integration-tests"
],
"scripts": {
"genall": "ultra -r gen",
"tscall": "ultra -r --filter '@genql/*' tsc",
"buildall": "ultra -r --filter '@genql/*' --topology build",
"test": "ultra -r test",
"watch": "ultra -r watch",
"play": "node -r sucrase/register cli/src/cli.ts",
"integration": "cd integration-tests && yarn gen && tsc && yarn test",
"examplecli": "yarn play -o example/generated -e https://graphql-compose.herokuapp.com/northwind/",
"publ": "yarn buildall && lerna publish minor",
"runexample": "node -r sucrase/register example/example.ts"
},
"devDependencies": {
"typescript": "^4.1.5",
"lerna": "^3.22.1",
"ultra-runner": "^3.9.0"
}
}