-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 783 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 783 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
{
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"clean": "turbo clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@koons/config": "^0.0.6",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"turbo": "^2.2.3"
},
"engines": {
"node": ">=18"
},
"name": "with-changesets",
"packageManager": "yarn@1.22.22",
"workspaces": [
"apps/*",
"packages/*",
"examples/*"
]
}