-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.9 KB
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
{
"name": "@sonder/buzz.js",
"version": "0.5.0",
"description": "Tools for mocking graphql queries and fragments",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"repository": "https://github.com/flatbook/buzz.js",
"author": "Steve Coffey",
"license": "MIT",
"scripts": {
"build": "tsc",
"check:typesafety": "tsc --noEmit",
"check:lint": "eslint . --ext=ts,js",
"check:test": "jest test",
"generate:docs": "typedoc --options ./typedoc.json ./src",
"prepare": "yarn build",
"preversion": "yarn check:lint && yarn check:test",
"version": "./bin/version",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@apollo/client": "^3.13.8",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/node": "^24.0.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^4.2.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.4",
"prettier": "^3.5.3",
"pretty-quick": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.2.5",
"typedoc": "^0.28.7",
"typedoc-plugin-external-module-name": "^4.0.6",
"typedoc-plugin-markdown": "^4.7.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@graphql-tools/mock": "^8.6.8",
"@graphql-tools/schema": "^8.3.10",
"@graphql-tools/utils": "^8.6.9",
"graphql": "^16.10.0"
},
"peerDependencies": {
"jest": ">=29.0.0",
"react": ">=18.0.0",
"react-native": ">=0.72.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}