-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 921 Bytes
/
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
{
"name": "@homebound/graphql-typescript-possible-types",
"version": "2.0.0-bump",
"main": "./build/index.js",
"types": "./build/",
"scripts": {
"build": "rm -rf build; tsc",
"prepack": "yarn build",
"test": "jest --watch",
"coverage": "jest --collectCoverage",
"format": "prettier --write 'src/**/*.{ts,js,tsx,jsx}'",
"graphql-codegen": "rm integration/graphql-types.ts; graphql-codegen --config integration/graphql-codegen.yml"
},
"dependencies": {
"@graphql-codegen/plugin-helpers": "^5.0.1",
"change-case": "^4.1.2",
"ts-poet": "^6.6.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"graphql": "^16.8.1",
"husky": "^3.0.9",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn format"
}
},
"packageManager": "[email protected]"
}