-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.91 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.91 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
{
"name": "wearon",
"private": true,
"workspaces": [
"./apps/*",
"./packages/*"
],
"scripts": {
"native": "cd apps/expo && yarn start",
"native:prebuild": "cd apps/expo && yarn prebuild",
"ios": "cd apps/expo && yarn ios",
"android": "cd apps/expo && yarn android",
"watch": "ultra -r --no-pretty --concurrency 400 watch",
"vercel:install": "yarn set version 3.5 && yarn install",
"web": "yarn build && cd apps/next && yarn dev",
"web:extract": "DISABLE_EXTRACTION=false yarn workspace next-app dev",
"web:prod": "yarn workspace next-app build",
"web:prod:serve": "yarn workspace next-app serve",
"postinstall": "yarn check-tamagui && yarn build",
"build": "yarn workspaces foreach --all --exclude next-app run build",
"upgrade:tamagui": "yarn up '*tamagui*'@latest '@tamagui/*'@latest",
"upgrade:tamagui:canary": "yarn up '*tamagui*'@canary '@tamagui/*'@canary",
"check-tamagui": "tamagui check",
"db:types": "npx supabase gen types typescript --project-id ljilupbgmrizblkzokfa > packages/api/src/types/database.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"resolutions": {
"react": "19.0.0",
"react-dom": "19.0.0",
"react-refresh": "^0.14.0",
"react-native-svg": "15.11.2",
"react-native-web": "0.21.2"
},
"dependencies": {
"@babel/runtime": "^7.24.6",
"@tamagui/cli": "^1.143.1",
"@tamagui/react-native-svg": "^1.143.1",
"@tamagui/react-native-web-lite": "^1.143.1",
"bmad-method": "^6.0.0-alpha.23",
"check-dependency-version-consistency": "^4.1.0",
"husky": "^9.1.6",
"turbo": "^1.13.4",
"typescript": "~5.8.3",
"ultra-runner": "^3.10.5",
"vercel": "^50.22.1",
"vitest": "^2.1.1"
},
"packageManager": "yarn@4.5.0",
"engines": {
"node": "22",
"npm": "10.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"tsx": "^4.21.0"
}
}