-
Notifications
You must be signed in to change notification settings - Fork 322
/
package.json
39 lines (39 loc) · 1.38 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --scope demo",
"lint": "turbo run lint",
"format:check": "prettier --check \"**/*.{ts,tsx,md,mdx,css}\"",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx,css}\"",
"release": "yarn release:prepare && yarn changelog && yarn release-commit",
"release:prepare": "git fetch --tags && conventional-recommended-bump -p angular | xargs yarn version:auto $1",
"release:canary": "yarn release:prepare && node scripts/get-unstable-version canary | xargs yarn version:auto $1",
"release-commit": "git add -u && git commit -m \"release: v${npm_package_version}\"",
"test": "turbo run test",
"version": "lerna version --force-publish -y --no-push --no-changelog --no-git-tag-version $npm_package_version",
"version:auto": "yarn version --no-git-tag-version --new-version $1",
"changelog": "node scripts/create-changelog"
},
"devDependencies": {
"@turbo/gen": "^1.9.7",
"conventional-recommended-bump": "^6.0.5",
"eslint": "^7.32.0",
"eslint-config-custom": "*",
"lerna": "^7.1.1",
"prettier": "^2.5.1",
"standard-changelog": "^2.0.21",
"turbo": "^1.9.7"
},
"name": "puck-repo",
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"recipes/*",
"packages/*"
],
"version": "0.16.2",
"engines": {
"node": ">=18"
}
}