-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
50
51
52
53
54
55
56
57
58
{
"name": "cypress-graphql-mock",
"description": "Mock out a GraphQL schema from the client",
"version": "0.3.1",
"scripts": {
"dev": "tsc --declarationMap -w",
"cypress:open": "yarn cypress open --project ./test",
"cypress:run": "yarn cypress run --project ./test",
"test-app:run": "cd ./test/test-graphql-app && SKIP_PREFLIGHT_CHECK=true yarn start",
"test-app:build": "cd ./test/test-graphql-app && SKIP_PREFLIGHT_CHECK=true yarn build",
"test-app:serve": "serve -s -l 3000 test/test-graphql-app/build",
"prepublish": "tsc --declarationMap"
},
"main": "dist",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/",
"yarn.lock",
"README.md"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"author": {
"name": "Tim Griesser"
},
"dependencies": {
"graphql-tools": "^4.0.3",
"tslib": "^1.9.3"
},
"peerDependencies": {
"cypress": "^3.1.3",
"graphql": "^14.0.2"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^4.1.0",
"@types/graphql": "^14.0.3",
"cypress": "^3.4.1",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"serve": "^11.1.0",
"ts-loader": "^6.0.4",
"graphql": "^14.0.2",
"typescript": "^3.2.2",
"wait-on": "^3.3.0",
"webpack": "^4.39.2"
}
}