-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 889 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 889 Bytes
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
{
"name": "turborepo",
"private": true,
"scripts": {
"update-versions": "bash ./scripts/update_versions.sh",
"update-files": "bash ./scripts/update_files.sh",
"update": "yarn update-versions && yarn update-files",
"revert-files": "bash ./scripts/revert_files.sh",
"publish-packages": "yarn update && yarn build && yarn doPublish && yarn revert-files",
"doPublish": "turbo publish-package",
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"storybook": "turbo storybook",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"prettier": "^3.2.5",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@1.22.19",
"workspaces": [
"apps/*",
"packages/*"
],
"version": "0.0.1"
}