-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.33 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
41
{
"private": true,
"scripts": {
"build": "turbo run build --filter=!@playground/* --filter=!@authdog/hydra-docs",
"dev": "turbo run dev --filter=@playground/*",
"dev_docs": "turbo run dev --filter=@authdog/hydra-docs",
"build_docs": "turbo run build --filter=@authdog/hydra-docs",
"ship": "turbo run ship --parallel --filter=@playground/*",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo test --filter=@authdog/* --filter=!@playground/* --concurrency=${TURBO_CONCURRENCY:-2}",
"changeset": "changeset",
"publish-packages": "pnpm build && pnpm changeset publish",
"generate-pr": "pnpm build --filter=@authdog/* --filter=!@playground/* && pnpm changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"eslint": "^8.48.0",
"jest": "^29.7.0",
"nock": "^13.4.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"turbo": "latest"
},
"packageManager": "[email protected]",
"name": "hydra",
"dependencies": {
"@graphql-tools/schema": "^10.0.0",
"graphql": "^16.8.1",
"graphql-yoga": "^5.0.0",
"itty-durable": "^2.1.0",
"react-icons": "^4.12.0",
"node-fetch": "2.6.7"
},
"resolutions": {
"node-fetch": "2.6.7"
}
}