forked from wayfair-incubator/gqmock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.08 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@wayfair/gqmock",
"version": "0.6.0",
"description": "GQMock - GraphQL Mocking Service",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"build:post": "node ./scripts/cleanPackageJson.js",
"docs": "doctoc README.md CONTRIBUTING.md",
"lint": "eslint '*/**/*.{js,ts}'",
"lint:errors": "yarn lint --quiet",
"lint:fix": "yarn lint --fix",
"prettier": "prettier . -l",
"prettier:fix": "yarn run prettier --write",
"test": "jest",
"test-debug": "node --inspect-brk ./node_modules/jest/bin/jest --runInBand",
"test-watch": "jest --watch",
"test:changed": "jest --onlyChanged --passWithNoTests --forceExit",
"ts:check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wayfair-incubator/gqmock.git"
},
"keywords": [
"api",
"federated",
"federation",
"gql",
"graphql",
"mocking",
"mock",
"service"
],
"author": "@mmazur122",
"license": "MIT",
"bugs": {
"url": "https://github.com/wayfair-incubator/gqmock/issues"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/wayfair-incubator/gqmock#readme",
"dependencies": {
"@apollo/server": "^4.1.1",
"@apollo/subgraph": "^2.1.3",
"@babel/runtime": "^7.18.9",
"@faker-js/faker": "^7.6.0",
"@graphql-tools/mock": "^8.7.12",
"chalk": "4.1.2",
"escape-string-regexp": "^4.0.0",
"express": "^4.18.1",
"graphql": "^16.6.0",
"joi": "^17.6.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"doctoc": "^2.2.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.0",
"prettier": "^2.7.1",
"typescript": "^4"
}
}