forked from hayes/pothos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.04 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "pothos-repo-root",
"version": "0.0.0",
"description": "A strongly typed code first schema builder for GraphQL",
"directories": {
"lib": "lib"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"generate": "pnpm turbo run generate --scope='@pothos/*'",
"build": "pnpm turbo run build --scope='@pothos/*' && pnpm run build-deno",
"build-website": "pnpm turbo run build --scope='@pothos/core' --no-deps --include-dependencies && pnpm run --filter @pothos/website next-build",
"build-deno": "node -r @swc-node/register packages/deno/scripts/build.ts",
"clean:all": "pnpm clean && rm -rf ./packages/*/node_modules node_modules ./packages/deno/packages && pnpm i",
"clean": "rm -rf ./{packages/*,examples*,website}/{tsconfig.*tsbuildinfo,lib,esm,dts,.turbo,.next} && git checkout -- 'packages/*/esm/*'",
"ci": "pnpm turbo run build generate test type --concurrency=4 && pnpm run lint:ci",
"ci:version": "changeset version && pnpm install --frozen-lockfile false",
"coverage": "pnpm run test -- --coverage",
"format": "prettier",
"lint": "eslint --cache '{packages,examples}/*/{src,test}/**.{ts,js}'",
"lint:ci": "eslint --cache '{packages,examples}/*/{src,test}/**.{ts,js}'",
"test": "pnpm turbo run test --scope='@pothos/*'",
"type": "pnpm turbo run type --scope='@pothos/*'",
"prerelease": "pnpm clean && pnpm install && pnpm run ci",
"release": "pnpm run prerelease && changeset publish && git push && pnpm git-tag && git status && pnpm -r publish",
"git-tag": "TAG=\"release-`date +%s`\" && git tag $TAG && git push origin $TAG",
"snapshot": "pnpm prerelease && changeset version --snapshot preview && pnpm install && changeset publish --tag preview"
},
"workspaces": [
"packages/*",
"examples/*",
"website"
],
"private": true,
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@faker-js/faker": "^7.6.0",
"@swc-node/register": "^1.5.5",
"@swc/cli": "^0.1.61",
"@swc/core": "^1.3.32",
"@swc/jest": "^0.2.24",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.19",
"@vitest/coverage-c8": "^0.28.4",
"eslint": "^8.33.0",
"eslint-config-moon": "^2.0.0",
"eslint-plugin-prettier": "^4.2.1",
"graphql": "16.6.0",
"graphql-helix": "^1.13.0",
"graphql-tag": "^2.12.6",
"jest": "^29.4.1",
"prettier": "^2.8.3",
"turbo": "^1.7.3",
"typescript": "4.9.5",
"typescript-json-schema": "^0.55.0",
"vitest": "^0.28.4"
},
"resolutions": {
"graphql": "16.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hayes/pothos.git"
},
"author": "Michael Hayes",
"license": "ISC",
"bugs": {
"url": "https://github.com/hayes/pothos/issues"
},
"homepage": "https://pothos-graphql.dev",
"packageManager": "pnpm@7.0.1",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack"
],
"allowedVersions": {
"jest": "^28.1.0",
"graphql": "^16.5.0"
}
}
},
"dependencies": {
"eslint-plugin-import": "^2.27.5"
}
}