-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 877 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 877 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
32
33
34
35
36
37
38
39
40
{
"name": "@ctison/root",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"pkgs/*",
"pkgs/_/*"
],
"catalogs": {
"react": {
"react": "19.2.0",
"react-dom": "19.2.0"
}
}
},
"scripts": {
"clean": "bun run -F './**' clean",
"prepare": "husky",
"pretest": "tsc",
"test": "bun run -F './**' test",
"update": "bun update -ri"
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@types/bun": "1.3.3",
"@types/node": "24.10.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"cspell": "9.3.2",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.6.2",
"prettier-plugin-jsdoc": "1.5.0",
"prettier-plugin-toml": "2.0.6",
"sort-package-json": "3.4.0",
"typescript": "5.9.3"
},
"packageManager": "bun@1.3.3"
}