forked from youngkidwarrior/sendapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.57 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.57 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "sendapp",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"supabase"
],
"scripts": {
"gen-env": "bun run bin/gen-env.ts",
"vercel:install": "yarn set version berry && yarn install",
"native": "cd apps/expo && yarn start",
"watch": "yarn workspaces foreach -pi run watch",
"web": "yarn build && cd apps/next && yarn dev",
"web:docker:build": "GIT_BRANCH=$(git symbolic-ref --short HEAD) GIT_HASH=$(git rev-parse --short=10 HEAD) dotenv -e ./.env -c -- docker compose --progress=plain build",
"web:docker:push": "GIT_BRANCH=$(git symbolic-ref --short HEAD) GIT_HASH=$(git rev-parse --short=10 HEAD) docker compose push",
"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",
"fix": "manypkg fix",
"postinstall": "test -n \"$SKIP_YARN_POST_INSTALL\" || (yarn check-deps && yarn build)",
"build": "yarn workspaces foreach --all --exclude next-app run build",
"biome:check": "yarn run biome check .",
"biome:check:fix": "yarn run biome check . --write",
"lint": "turbo lint",
"lint:fast": "turbo lint:fast",
"lint:fix": "turbo lint:fix",
"typecheck": "turbo typecheck",
"upgrade:tamagui": "yarn up '*tamagui*'@latest '@tamagui/*'@latest",
"upgrade:tamagui:canary": "yarn up '*tamagui*'@canary '@tamagui/*'@canary",
"check-deps": "check-dependency-version-consistency .",
"supabase": "yarn workspace @my/supabase",
"contracts": "yarn workspace @my/contracts",
"wagmi": "yarn workspace @my/wagmi",
"next-app": "yarn workspace next-app",
"playwright": "yarn workspace @my/playwright",
"distributor": "yarn workspace distributor",
"snaplet": "yarn workspace @my/snaplet",
"workers": "yarn workspace workers",
"shovel": "yarn workspace @my/shovel",
"workflows": "yarn workspace @my/workflows",
"bridge-webhook": "yarn workspace bridge-webhook",
"sendctl": "npx tsx ./packages/sendctl/bin/sendctl.js",
"clean": "yarn workspaces foreach --all -pi run clean",
"i18n:sync": "node packages/app/scripts/i18n-sync.cjs",
"i18n:check": "yarn i18n:sync --check",
"i18n:translate": "node packages/app/scripts/i18n-translate.cjs"
},
"resolutions": {
"next": "15.5.7",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-test-renderer": "19.2.3",
"react-server-dom-webpack": "19.2.3",
"react-refresh": "^0.14.0",
"react-native-svg": "15.12.1",
"react-native-web": "^0.21.0",
"@babel/core": "^7.24",
"babel-loader": "^8.3.0",
"istanbul-lib-coverage@npm:^3.2.0": "patch:istanbul-lib-coverage@npm%3A3.2.2#~/.yarn/patches/istanbul-lib-coverage-npm-3.2.2-5c0526e059.patch",
"istanbul-lib-coverage@npm:^3.0.0": "patch:istanbul-lib-coverage@npm%3A3.2.2#~/.yarn/patches/istanbul-lib-coverage-npm-3.2.2-5c0526e059.patch",
"istanbul-lib-coverage@npm:^3.2.2": "patch:istanbul-lib-coverage@npm%3A3.2.2#~/.yarn/patches/istanbul-lib-coverage-npm-3.2.2-5c0526e059.patch"
},
"dependencies": {
"@babel/runtime": "^7.27.3",
"@manypkg/cli": "^0.19.1",
"@nderscore/tamagui-typescript-plugin": "^0.6.0",
"@typescript/native-preview": "latest",
"check-dependency-version-consistency": "^3.0.3",
"eslint": "^8.46.0",
"node-gyp": "^9.3.1",
"turbo": "^2.5.3",
"typescript": "~5.9.2"
},
"packageManager": "yarn@4.3.1",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@postgrestools/postgrestools": "^0.6.1",
"dotenv-cli": "^7.3.0",
"lefthook": "^1.5.5",
"zx": "^8.1.2"
}
}