-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.83 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.83 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "artico",
"private": true,
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"clean": "git clean -xfd node_modules",
"clean:ws": "turbo run clean",
"dev": "turbo watch dev --continue",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "bunx sherif@latest",
"postinstall": "bun run lint:ws",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@rtco/prettier-config": "workspace:*",
"@types/minimatch": "^6.0.0",
"prettier": "catalog:",
"sherif": "^1.6.1",
"turbo": "^2.5.5",
"typescript": "catalog:"
},
"engines": {
"bun": ">=1.2.19",
"node": ">=22.17.1"
},
"packageManager": "bun@1.2.19",
"workspaces": [
"apps/*",
"examples/*",
"packages/*",
"tooling/*"
],
"catalog": {
"eslint": "^9.25.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"zod": "^3.24.3",
"@tanstack/react-query": "^5.74.4",
"@trpc/client": "^11.1.0",
"@trpc/tanstack-react-query": "^11.1.0",
"@trpc/server": "^11.1.0"
},
"catalogs": {
"react19": {
"react": "19.1.0",
"react-dom": "19.1.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6"
},
"tailwind4": {
"tailwindcss": "^4.1.11",
"@tailwindcss/postcss": "^4.1.11"
}
},
"prettier": "@rtco/prettier-config"
}