-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "@homebound/graphql-typescript-response-factories",
"version": "2.0.0-bump",
"main": "./build/index.js",
"types": "./build/",
"scripts": {
"build": "rm -rf build; tsc",
"test": "jest",
"prepack": "yarn build",
"format": "prettier --write 'src/**/*.{ts,js,tsx,jsx}'",
"graphql-codegen": "graphql-codegen --config ./integration/graphql-codegen.yml"
},
"dependencies": {
"@graphql-codegen/plugin-helpers": "^5.0.4",
"graphql": "^16.8.1",
"ts-poet": "^6.9.0"
},
"devDependencies": {
"@apollo/client": "^3.10.4",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript-operations": "^4.2.1",
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
"@homebound/graphql-typescript-factories": "^2.68.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.2",
"husky": "^3.0.9",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-apollo": "^3.1.5",
"ts-jest": "^29.1.3",
"typescript": "^5.4.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn format"
}
},
"packageManager": "[email protected]"
}