-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.08 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
{
"name": "@homebound/graphql-typescript-resolver-scaffolding",
"version": "1.0.0-bump",
"main": "./build/index.js",
"types": "./build/",
"scripts": {
"build": "rm -rf build; ./node_modules/.bin/tsc",
"prepare": "yarn build",
"format": "prettier --write 'src/**/*.{ts,js,tsx,jsx,graphql}'",
"graphql-codegen": "(cd integration && rm -fr src/resolvers/objects && rm -fr src/resolvers/mutations && rm -fr src/resolvers/queries && rm -fr src/resolvers/subscriptions && graphql-codegen --config graphql-codegen.yml && ../node_modules/.bin/tsc)"
},
"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",
"@homebound/graphql-typescript-simple-resolvers": "^1.51.0",
"@types/jest": "^29.5.5",
"graphql": "^16.8.1",
"graphql-subscriptions": "^2.0.0",
"husky": "^4.2.5",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn format"
}
},
"packageManager": "[email protected]"
}