-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "@data-eden/experiment-mocking",
"version": "0.1.0",
"private": true,
"description": "Package intended to experiment with various GraphQL mocking utilities",
"homepage": "https://github.com/data-eden/experiment-mocking#readme",
"bugs": {
"url": "https://github.com/data-eden/experiment-mocking/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-eden/experiment-mocking.git"
},
"license": "MIT",
"scripts": {
"lint": "yarn prettier:check",
"prettier:check": "prettier '**/*' --check --ignore-unknown",
"graphql-mocks": "ts-node graphql-mocks/index.ts",
"graphql-mocks:serve": "gqlmocks serve --schema graphql-mocks/schema.gql"
},
"volta": {
"node": "16.15.0",
"yarn": "1.22.19"
},
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@graphql-mocks/falso": "^0.4.0",
"@graphql-mocks/sinon": "^0.2.3",
"@graphql-tools/mock": "^8.7.6",
"@graphql-tools/schema": "^9.0.4",
"@graphql-yoga/node": "^2.13.13",
"@ngneat/falso": "^6.1.0",
"@types/node": "^18.7.18",
"gqlmocks": "^0.2.0",
"graphql": "^16.6.0",
"graphql-faker": "^2.0.0-rc.25",
"graphql-mocks": "^0.8.4",
"prettier": "^2.7.1",
"ts-node": "^10.9.1"
},
"dependencies": {
"typescript": "^4.8.3"
}
}