-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.56 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
{
"name": "inferred-graphql",
"version": "0.0.0",
"description": "A set of packages for inferring types from strings",
"directories": {
"lib": "lib"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "pnpm create-config && pnpm run -r generate --filter @inferred/*",
"create-config": "beemo create-config",
"build": "pnpm turbo run build --scope='@inferred/*' && pnpm run -r generate --filter @inferred-examples/*",
"clean:all": "pnpm clean && rm -rf ./packages/*/node_modules node_modules ./packages/deno/packages && pnpm",
"clean": "rm -rf ./packages/*/{tsconfig.tsbuildinfo,lib,esm} && git checkout -- 'packages/*/esm/*'",
"ci": "pnpm turbo run build test --concurrency=4 --scope='@inferred/*' && pnpm run type && pnpm run lint:ci",
"ci:version": "changeset version && pnpm install --frozen-lockfile false",
"coverage": "pnpm run test --coverage",
"format": "beemo prettier",
"lint": "beemo eslint '{packages,examples}/*/{src,test}/**.{ts,js}'",
"lint:ci": "eslint '{packages,examples}/*/{src,test}/**.{ts,js}'",
"test": "pnpm turbo run test --scope='@inferred/*'",
"type": "pnpm turbo run type --scope='@inferred/*'",
"prerelease": "pnpm clean && pnpm install && pnpm run ci",
"release": "pnpm run prerelease && changeset publish && git push --follow-tags && git status && pnpm -r publish",
"snapshot": "pnpm prerelease && changeset version --snapshot preview && pnpm install && changeset publish --tag preview"
},
"workspaces": [
"packages/*",
"examples/*",
"website"
],
"private": true,
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@beemo/cli": "^2.0.5",
"@beemo/core": "^2.1.3",
"@beemo/dev": "^1.7.6",
"@changesets/cli": "^2.20.0",
"@faker-js/faker": "^6.0.0-alpha.6",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"eslint": "^8.9.0",
"eslint-plugin-prettier": "^4.0.0",
"graphql": "16.3.0",
"graphql-helix": "^1.11.0",
"graphql-tag": "^2.12.6",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"turbo": "^1.1.2",
"typescript": "4.5.5"
},
"resolutions": {
"graphql": "16.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hayes/inferred-graphql.git"
},
"author": "Michael Hayes",
"license": "ISC",
"bugs": {
"url": "https://github.com/hayes/inferred-graphql/issues"
},
"homepage": "https://github.com/hayes/inferred-graphql",
"packageManager": "[email protected]"
}