-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.32 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.32 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
65
66
67
{
"private": true,
"name": "nativeui-monorepo",
"version": "0.3.1",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "pnpm -r --parallel --filter \"./apps/**\" run dev",
"dev:website": "pnpm --filter @native-ui-org/website dev",
"dev:sandbox": "pnpm --filter @native-ui-org/sandbox dev",
"build": "pnpm --filter @native-ui-org/native-modules run build && pnpm --filter @native-ui-org/primitives run build && pnpm --filter @native-ui-org/website build",
"build:packages": "pnpm --filter @native-ui-org/native-modules run build && pnpm --filter @native-ui-org/primitives run build",
"build:website": "pnpm --filter @native-ui-org/website build",
"build:sandbox": "pnpm --filter @native-ui-org/native-modules run build && pnpm --filter @native-ui-org/primitives build && pnpm --filter @native-ui-org/sandbox build",
"sync-docs": "pnpm --filter @native-ui-org/website sync-docs",
"lint": "pnpm -r lint || true",
"release": "pnpm changeset",
"test": "pnpm -r --filter @native-ui-org/primitives run test",
"android": "expo run:android",
"ios": "expo run:ios"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@changesets/changelog-git": "^0.2.1",
"@changesets/cli": "^2.27.1",
"@react-native/babel-preset": "^0.81.1",
"@release-it/conventional-changelog": "^10.0.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^30.0.0",
"@types/react": "19.1.17",
"babel-jest": "^30.1.2",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native-web": "^0.21.1",
"react-test-renderer": "19.1.0",
"typescript": "5.9.3"
},
"pnpm": {
"overrides": {
"@types/react": "19.1.17",
"typescript": "5.9.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-test-renderer": "19.1.0"
},
"public-hoist-pattern": [
"*@types/react*",
"react",
"react-dom"
]
},
"dependencies": {
"@changesets/changelog-github": "^0.5.1",
"@radix-ui/react-slot": "^1.2.3",
"expo": "~54.0.13",
"react": "19.1.0",
"react-native": "0.81.4"
}
}