-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 962 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 962 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
{
"name": "number-flow-react-native-monorepo",
"version": "1.0.0",
"devDependencies": {
"@biomejs/biome": "^2.4.0",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.0",
"lefthook": "^2.1.1"
},
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5"
},
"private": true,
"scripts": {
"prepare": "lefthook install",
"lib": "bun --cwd packages/number-flow-react-native",
"example": "bun --cwd apps/example",
"docs": "bun --cwd docs",
"check-types": "bun --filter '*' check-types",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "bun run lib test",
"build": "bun run lib prepare",
"android": "expo run:android",
"ios": "expo run:ios"
},
"trustedDependencies": [
"@shopify/react-native-skia"
],
"workspaces": [
"packages/*",
"apps/*",
"docs"
]
}