-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "@homebound/graphql-typescript-response-factories",
"version": "1.0.0-bump",
"main": "./build/index.js",
"types": "./build/",
"scripts": {
"build": "rm -rf build; ./node_modules/.bin/tsc",
"prepare": "npm run build",
"format": "prettier --write 'src/**/*.{ts,js,tsx,jsx}'",
"graphql-codegen": "graphql-codegen --config ./integration/graphql-codegen.yml"
},
"dependencies": {
"@graphql-codegen/cli": "^1.13.1",
"@graphql-codegen/plugin-helpers": "^1.13.1",
"ts-poet": "^3.2.2"
},
"devDependencies": {
"apollo-client": "^2.6.10",
"@types/jest": "^26.0.7",
"@types/react": "^16.9.43",
"@graphql-codegen/typescript-react-apollo": "^1.12.1",
"@graphql-codegen/typescript-operations": "^1.12.1",
"@homebound/graphql-typescript-factories": "^1.24.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-apollo": "^3.1.0",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
}
}