forked from tamagui/starter-free
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.87 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
52
53
54
55
56
57
{
"name": "starter-free",
"private": true,
"workspaces": [
"./apps/*",
"./packages/*"
],
"scripts": {
"native": "cd apps/native && yarn start",
"watch": "yarn workspaces foreach -pi run watch",
"vercel:install": "yarn set version 3.5 && yarn install",
"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",
"fix": "manypkg fix",
"postinstall": "yarn check-deps && yarn build",
"build": "yarn workspaces foreach --all --exclude next-app run build",
"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",
"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.4.0",
"react-native-web": "~0.19.12"
},
"dependencies": {
"@babel/runtime": "^7.20.0",
"@manypkg/cli": "^0.21.4",
"@react-native/eslint-config": "0.75.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"check-dependency-version-consistency": "^4.1.0",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^9.1.6",
"prettier": "^2.8.8",
"turbo": "^1.13.4",
"typescript": "^5.3.3"
},
"packageManager": "yarn@4.5.0",
"engines": {
"node": "22",
"npm": "10.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3"
}
}