-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 781 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 781 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
{
"name": "react-native-bread-monorepo",
"private": true,
"workspaces": ["package", "example"],
"scripts": {
"dev": "bun run --cwd example start",
"build": "bun run --cwd package build",
"typecheck": "bun run --cwd package typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"clean": "bun run --cwd package clean",
"postinstall": "simple-git-hooks"
},
"simple-git-hooks": {
"commit-msg": "bunx commitlint --edit $1"
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"simple-git-hooks": "^2.13.1"
}
}