-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.01 KB
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
36
37
{
"name": "react-components",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"check": "bun run check:format && bun run check:lint",
"check:fix": "bun run check:format:fix && bun run check:lint:fix",
"check:format": "oxfmt --check",
"check:format:fix": "oxfmt",
"check:lint": "oxlint",
"check:lint:fix": "oxlint --fix --fix-suggestions --fix-dangerously",
"check:type": "turbo check:type",
"clean": "sh scripts/clean.sh",
"dev": "turbo dev",
"update": "bun update --interactive --recursive"
},
"devDependencies": {
"eslint-plugin-perfectionist": "5.6.0",
"eslint-plugin-unused-imports": "4.4.1",
"oxfmt": "0.40.0",
"oxlint": "1.55.0",
"turbo": "2.8.17"
},
"packageManager": "bun@1.3.0",
"catalog": {
"@base-ui/react": "1.3.0",
"@nattui/tailwind-colors": "0.0.8",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"typescript": "5.9.3"
}
}