-
-
Notifications
You must be signed in to change notification settings - Fork 634
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 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
38
39
{
"name": "root",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"dev:examples": "turbo run dev --filter=./examples/*",
"sync-ui": "bash ./scripts/mirror-ui-change.sh",
"lint": "turbo run lint",
"lint:format": "oxfmt --check",
"format": "oxfmt",
"release": "turbo run build --filter=./packages/* && changeset publish && pnpm -r run postpublish",
"test": "vitest",
"types:check": "turbo run types:check --continue",
"version": "changeset version && pnpm install --lockfile-only"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^10.0.1",
"bun": "1.3.11",
"concurrently": "^9.2.1",
"eslint": "^10.1.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-tailwindcss": "^3.18.2",
"oxfmt": "^0.41.0",
"rimraf": "^6.1.3",
"turbo": "2.8.20",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0"
},
"engines": {
"node": ">= 18.17.0"
},
"packageManager": "pnpm@10.18.3"
}