-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.13 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.13 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
{
"name": "nexpo",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@lingui/babel-plugin-lingui-macro": "5.9.2",
"@types/negotiator": "^0.6.4",
"@types/react": "19.1.10",
"check-dependency-version-consistency": "6.0.0",
"husky": "9.1.7",
"lingui-ai-translate": "0.1.4",
"lint-staged": "16.3.1",
"supabase": "2.76.15",
"turbo": "2.8.12",
"typescript": "~5.9.2"
},
"scripts": {
"native": "cd apps/expo && yarn start",
"native:android": "bash apps/expo/scripts/start-android.sh",
"native:ios": "cd apps/expo && yarn ios",
"web": "cd apps/next && yarn dev",
"storybook:native": "cd apps/storybook-native && yarn storybook",
"storybook:web": "cd apps/storybook-web && yarn storybook",
"lingui:extract": "yarn workspace app lingui:extract --clean",
"lingui:translate": "lingui-ai-translate -d packages/app/locales",
"lingui:compile": "yarn workspace app lingui:compile",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"format": "turbo format",
"format:check": "turbo format:check",
"check-deps": "check-dependency-version-consistency .",
"check-deps:fix": "check-dependency-version-consistency . --fix",
"prepare": "husky",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"supabase:reset": "supabase db reset",
"supabase:status": "supabase status",
"supabase:logs": "supabase logs",
"supabase:migration:new": "supabase migration new",
"supabase:migration:up": "supabase migration up",
"supabase:test": "supabase test db",
"test": "turbo test",
"test:db": "supabase test db",
"test:api": "turbo test --filter=api",
"test:watch": "turbo test:watch",
"test:coverage": "turbo test:coverage",
"test:e2e:web": "turbo test:e2e --filter=next-app",
"test:e2e:mobile": "cd apps/expo && yarn test:e2e"
},
"packageManager": "yarn@4.7.0",
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css}": [
"biome check --write"
]
},
"resolutions": {
"react": "19.1.0",
"react-native-renderer": "19.1.0"
}
}