-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 1.28 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-factories",
"version": "2.0.0-bump",
"main": "./build/index.js",
"types": "./build/",
"scripts": {
"build": "rm -rf build; ./node_modules/.bin/tsc",
"prepack": "yarn build",
"test": "./node_modules/.bin/jest --watch",
"coverage": "./node_modules/.bin/jest --collectCoverage",
"format": "prettier --write 'src/**/*.{ts,js,tsx,jsx}'",
"graphql-codegen": "graphql-codegen --config ./integration/graphql-codegen.yml && graphql-codegen --config ./integration/graphql-codegen-types-separate.yml && graphql-codegen --config ./integration/graphql-codegen-with-enum-mapping.yml"
},
"peerDependencies": {
"graphql": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"@graphql-codegen/plugin-helpers": "^5.0.4",
"@graphql-codegen/visitor-plugin-common": "^5.2.0",
"change-case": "^4.1.2",
"ts-poet": "^6.9.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript-operations": "^4.2.1",
"@types/jest": "^29.5.12",
"graphql": "^16.8.1",
"husky": "^3.1.0",
"jest": "29.7.0",
"prettier": "^3.2.5",
"ts-jest": "29.1.3",
"typescript": "^5.4.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn format"
}
},
"packageManager": "yarn@3.6.3"
}