forked from wundergraph/wundergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 3.24 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
{
"private": true,
"version": "0.97.0",
"name": "wundergraph-env",
"license": "Apache-2.0",
"author": {
"name": "WunderGraph Maintainers",
"email": "info@wundergraph.com"
},
"repository": {
"type": "https",
"url": "https://github.com/wundergraph/wundergraph"
},
"homepage": "https://wundergraph.com",
"scripts": {
"build": "pnpm -r run --filter='!./packages/*-testapp' --filter='!./docs-website' build",
"build:libs": "pnpm -r run --filter='!./packages/*-testapp' --filter='!./docs-website' build",
"build:sdk": "pnpm -r run --filter='./packages/sdk' build",
"watch:libs": "pnpm -r --parallel run --filter='!./packages/*-testapp' --filter='!./docs-website' build --watch",
"watch:sdk": "pnpm -r run --filter='./packages/sdk' build --watch",
"test": "pnpm run -r test",
"format": "prettier --write --loglevel silent **/*.{js,jsx,ts,tsx,md,mdx,yml,yaml,css,json,graphql,gql}",
"format:examples": "prettier --write --loglevel silent examples/**/*.{js,jsx,ts,tsx,md,mdx,yml,yaml,css,json,graphql,gql} pkg/templates/assets/templates/**/*.{js,jsx,ts,tsx,md,mdx,yml,yaml,css,json,graphql,gql}",
"codegen": "pnpm run --filter='./packages/protobuf' build",
"preview:version:packages": "lerna version --conventional-commits --git-dry-run",
"preview:version:packages-next": "lerna version prerelease --git-dry-run",
"ci:publish:packages": "lerna publish --conventional-commits --sync-workspace-lock --create-release github --allow-branch main --yes --message=\"chore(release): Publish [skip ci]\"",
"ci:publish:packages-next": "lerna publish prerelease --sync-workspace-lock --conventional-commits --create-release github --allow-branch next --yes --message=\"chore(release): Publish next [skip ci]\"",
"publish:engine": "release-it --git.requireBranch=main",
"publish:engine-next": "release-it --git.requireBranch=next --preRelease=next",
"postinstall": "husky install && pnpm run patch",
"patch": "patch-package",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && find . -name 'dist' -type d -prune -exec rm -rf '{}' +"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=7.0.0 < 7.4.0 || >= 7.5.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx,yml,yaml,css,json,graphql,gql}": [
"prettier --write"
]
},
"release-it": {
"dry-run": false,
"git": {
"tagMatch": "[!@]*",
"tagName": "v${version}",
"commitMessage": "ci(release): release ${version}",
"requireCleanWorkingDir": true
},
"npm": {
"publish": false
},
"hooks": {
"after:bump": "pnpm install --filter ./packages/wunderctl --lockfile-only"
},
"plugins": {
"@release-it/bumper": {
"out": [
{
"file": "packages/wunderctl/package.json",
"path": "version"
}
]
}
}
},
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@lerna-lite/cli": "1.5.1",
"@lerna-lite/core": "1.5.1",
"@milahu/patch-package-with-pnpm-support": "6.4.10",
"@release-it/bumper": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"prettier": "^2.6.2",
"release-it": "^15.1.1",
"rimraf": "^3.0.2"
}
}