-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 752 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 752 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
{
"name": "fieldflow-monorepo",
"description": "The ultimate keyboard management and form flow solution for React Native.",
"private": true,
"workspaces": [
"packages/*",
"example"
],
"scripts": {
"start": "bun run --filter fieldflow-showcase start",
"android": "bun run --filter fieldflow-showcase android",
"ios": "bun run --filter fieldflow-showcase ios",
"web": "bun run --filter fieldflow-showcase web",
"lint": "turbo run lint",
"build": "turbo run build",
"release": "cd packages/react-native-fieldflow && npm publish"
},
"devDependencies": {
"turbo": "latest",
"whatwg-fetch": "^3.6.20",
"anser": "^1.4.9",
"stacktrace-parser": "^0.1.10",
"pretty-format": "^29.7.0"
}
}