-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.5 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "starter-free",
"private": true,
"workspaces": [
"./apps/*",
"./packages/*"
],
"scripts": {
"native": "cd apps/expo && pnpm start",
"watch": "pnpm -r run watch",
"vercel:install": "pnpm install",
"web": "pnpm build && cd apps/next && pnpm next",
"web:extract": "DISABLE_EXTRACTION=false pnpm --filter next-app dev",
"web:prod": "pnpm --filter next-app build",
"web:prod:serve": "pnpm --filter next-app serve",
"fix": "manypkg fix",
"postinstall": "pnpm check-deps && pnpm build",
"build": "pnpm -r --filter=!next-app run build",
"upgrade:tamagui": "pnpm up '*tamagui*'@latest '@tamagui/*'@latest react-native-web-lite@latest",
"upgrade:tamagui:canary": "pnpm up '*tamagui*'@canary '@tamagui/*'@canary react-native-web-lite@canary",
"check-deps": "check-dependency-version-consistency .",
"test": "vitest"
},
"resolutions": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-refresh": "^0.14.0",
"react-native-svg": "15.3.0",
"react-native-web": "~0.19.12",
"metro": "0.76.0",
"metro-resolver": "0.76.0"
},
"dependencies": {
"@babel/runtime": "^7.24.6",
"@manypkg/cli": "^0.21.4",
"check-dependency-version-consistency": "^4.1.0",
"eslint": "^9.3.0",
"node-gyp": "^10.1.0",
"prettier": "^3.3.3",
"turbo": "^1.13.4",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "22",
"npm": "10.8"
},
"devDependencies": {
"vitest": "^2.1.1"
}
}