generated from wayfair-incubator/oss-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.21 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
77
78
79
80
81
{
"name": "@wayfair/gqmock",
"version": "2.0.1",
"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.11.0",
"@apollo/subgraph": "^2.9.0",
"@babel/runtime": "^7.25.6",
"@graphql-tools/mock": "^9.0.4",
"chalk": "4.1.2",
"cors": "^2.8.5",
"escape-string-regexp": "^4.0.0",
"express": "^4.19.2",
"graphql": "^16.9.0",
"joi": "^17.13.3",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@faker-js/faker": "^9.0.0",
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.12",
"@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": "^50.2.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"prettier": "^2.7.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@faker-js/faker": "^7 || ^8 || ^9"
}
}