-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "msw-introspection",
"version": "0.0.5",
"license": "MIT",
"main": "./dist/lib/index.js",
"module": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"files": [
"/dist/lib/*"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "tsc --noEmit",
"dev": "npm run build --watch",
"gt": "graphql-codegen --config test/codegen.yml",
"lint": "TIMING=1 eslint \"**/*.ts*\" \"**/*.tsx*\"",
"pkg-ok": "pkg-ok",
"prepublish": "npm run test && npm run build && npm run pkg-ok",
"test": "jest"
},
"dependencies": {
"@graphql-tools/mock": "^8.7.19",
"ramda": "^0.28.0"
},
"devDependencies": {
"@apollo/client": "^3.7.10",
"@graphql-codegen/cli": "^3.2.2",
"@graphql-codegen/introspection": "^3.0.1",
"@graphql-codegen/typescript": "^3.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/ramda": "^0.28.23",
"cross-fetch": "^3.1.5",
"eslint": "^8.36.0",
"graphql": "^16.6.0",
"graphql-codegen": "^0.4.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"msw": "^0.47.4",
"pkg-ok": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.0.5",
"ts-node": "10.9.1",
"typescript": "^4.5.2",
"use-query-rd": "^2.0.3"
},
"peerDependencies": {
"@apollo/client": "^3.0.0",
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0",
"msw": "*"
},
"packageManager": "npm@8.5.5",
"engines": {
"node": ">=14.0.0 || >=16.0.0 || >=18.0.0"
},
"publishConfig": {
"access": "public"
}
}