-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@mavrou/cy-graphql",
"version": "2.2.0",
"description": "Cypress custom commands for GraphQL testing",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"files": [
"/dist/*"
],
"scripts": {
"test": "cypress run",
"cy:open": "cypress open",
"start": "node server",
"e2e": "start-test 4000",
"dev": "start-test 4000 cy:open",
"build": "tsc",
"build:watch": "tsc --watch"
},
"keywords": [
"cypress",
"graphql",
"cy-graphql"
],
"author": "Dimitris Mavroudis <im.dimitris.mavroudis@gmail.com> (https://mavrou.gr/)",
"license": "MIT",
"devDependencies": {
"@types/node": "17.0.18",
"cypress": "13.15.2",
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"start-server-and-test": "2.0.8",
"typescript": "4.5.4"
},
"peerDependencies": {
"cypress": ">=3"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dimavroudis/cy-graphql.git"
},
"bugs": {
"url": "https://github.com/dimavroudis/cy-graphql/issues"
},
"homepage": "https://github.com/dimavroudis/cy-graphql#readme"
}