-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 782 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 782 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
{
"name": "react-native-morph",
"private": true,
"workspaces": [
"packages/*",
"example/*"
],
"scripts": {
"build": "bun run --cwd packages/react-native-morph build",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "bun run --cwd packages/react-native-morph typecheck",
"nuke": "find . -name node_modules -type d -prune -exec rm -rf {} + && rm -f bun.lock bun.lockb && bun install --force",
"release:react-native-morph": "bun run --cwd packages/react-native-morph release"
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
"@commitlint/config-conventional": "^19.8.1",
"commitlint": "^19.8.1",
"lefthook": "^2.0.3",
"typescript": "~5.8.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}