forked from oktaysenkan/monicon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 815 Bytes
/
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
{
"name": "monicon",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"files": [],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"build:pkgs": "turbo run build --filter='./packages/*'",
"clean": "turbo run clean",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore",
"changeset": "changeset",
"bump": "changeset version",
"release": "yarn build:pkgs && changeset publish",
"sync": "syncpack fix-mismatches"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"prettier": "^3.3.3",
"turbo": "^2.1.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"dependencies": {
"syncpack": "^13.0.0"
}
}