-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.2 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
33
34
35
36
{
"name": "playwright-graphql-example",
"version": "1.0.0",
"description": "This is playwright-graphql project template.",
"main": "index.js",
"scripts": {
"generate:schema": "get-graphql-schema http://localhost:3000/graphql > schema.gql",
"generate:operations": "gqlg --schemaFilePath ./schema.gql --destDirPath ./gql/autogenerated-operations --depthLimit 6",
"generate:types": "graphql-codegen --config codegen.ts",
"generate:raw:types": "graphql-codegen --config raw-codegen.ts",
"codegen": "npm run generate:schema && npm run generate:operations && npm run generate:types",
"test": "npx playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanteUkraine/playwright-graphql-example.git"
},
"keywords": [
"playwright",
"graphql",
"api",
"tests"
],
"author": "Oleksandr Solomin",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanteUkraine/playwright-graphql-example/issues"
},
"homepage": "https://github.com/DanteUkraine/playwright-graphql-example#readme",
"dependencies": {
"@playwright/test": "^1.48.2",
"@types/node": "^22.8.7",
"playwright-graphql": "^1.0.4",
"typescript": "^5.6.3"
}
}