-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 722 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 722 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
{
"name": "workspace",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --filter='./packages/*'",
"play": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"automd": "automd",
"manypkg": "manypkg"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@4.7.0",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@manypkg/cli": "^0.23.0",
"automd": "^0.4.0",
"prettier": "^3.5.3",
"turbo": "^2.4.4",
"typescript": "^5.8.2"
}
}