-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.49 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.49 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
{
"name": "learn2write4kid",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --exclude next-app run build",
"check-deps": "check-dependency-version-consistency .",
"fix": "manypkg fix",
"postinstall": "yarn check-deps && yarn build",
"native": "cd apps/expo && yarn start",
"upgrade:tamagui": "yarn up '*tamagui*'@latest '@tamagui/*'@latest react-native-web-lite@latest",
"upgrade:tamagui:canary": "yarn up '*tamagui*'@canary '@tamagui/*'@canary react-native-web-lite@canary",
"vercel:install": "yarn set version 3.5 && yarn install",
"watch": "yarn workspaces foreach -pi run watch",
"web": "yarn build && cd apps/next && yarn next",
"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"
},
"resolutions": {
"@types/react-native": "0.73.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native-svg": "13.14.1",
"react-native-web": "0.21.2",
"react-refresh": "0.18.0"
},
"dependencies": {
"@babel/runtime": "7.28.4",
"@manypkg/cli": "0.25.1",
"check-dependency-version-consistency": "4.1.1",
"eslint": "8.57.1",
"node-gyp": "9.4.1",
"prettier": "2.8.8",
"turbo": "1.13.4",
"typescript": "5.9.3"
},
"packageManager": "yarn@3.8.7",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.3.0"
}
}