-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.14 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
{
"name": "@repo/root",
"type": "module",
"private": true,
"version": "",
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"stylecheck": "prettier . --check",
"build": "turbo build --concurrency=100% --cache-dir=.turbo",
"lint": "turbo lint lint:root --concurrency=100% --cache-dir=.turbo",
"test": "turbo test --cache-dir=.turbo",
"lint:root": "CHECK_REDOS=true eslint .",
"emit-types": "turbo run emit-types --concurrency=100% --cache-dir=.turbo",
"typecheck": "turbo run typecheck --concurrency=100% --cache-dir=.turbo",
"release": "turbo run build --cache-dir=.turbo && yarn workspaces foreach -A -p -j unlimited --no-private npm publish --tolerate-republish",
"format": "prettier --write \"**/*.{cjs,js,mjs,ts,tsx,md,json}\""
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@repo/eslint-config": "workspace:*",
"@repo/tsconfig": "workspace:*",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typescript": "5.7.2"
}
}