-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.06 KB
/
package.json
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
{
"name": "minimaltodo",
"description": "Minimal Todo App built with Tamagui Expo Next.js Solito monorepo",
"version": "0.3.1",
"homepage": "https://huuquyet.github.io/MinimalTodoApp/",
"private": true,
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"android": "bun --filter 'expo-app' android",
"build": "bun --filter '@my/ui' build",
"check": "bun --filter 'expo-app' check",
"clean": "git clean -xdf",
"doctor": "bun --filter 'expo-app' doctor",
"ios": "bun --filter 'expo-app' ios",
"native": "bun --filter 'expo-app' start",
"lint": "bunx @biomejs/biome check --write .",
"postinstall": "bun run build",
"watch": "bun --filter '@my/ui' watch",
"web": "bun run build && bun --filter 'next-app' dev",
"web:extract": "DISABLE_EXTRACTION=false bun --filter 'next-app' dev",
"web:prod": "bun run build && bun --filter 'next-app' build",
"web:prod:serve": "bun --filter 'next-app' serve"
},
"devDependencies": {
"@babel/types": "^7.25.2",
"@types/bun": "^1.1.6",
"typescript": "~5.3.3"
}
}