-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpackage.json
108 lines (108 loc) · 3.78 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "vxrn-monorepo",
"version": "0.0.0",
"private": true,
"repository": {
"url": "https://github.com/onejs/one"
},
"workspaces": [
"./apps/*",
"./packages/*",
"./examples/*",
"./tests/*"
],
"scripts": {
"build": "turbo run build --filter='*' --filter='!example/*'",
"build:js": "yarn build --no-cache --force -- --skip-types",
"check": "turbo check",
"ci": "yarn && yarn build && yarn check && yarn typecheck && yarn lint && yarn test && git diff --exit-code",
"clean": "yarn turbo:run clean:build",
"clean:build": "yarn turbo:run clean:build",
"clean:ts": "tsc -b --clean tsconfig.json",
"dev:example": "tsx ./scripts/dev.ts example",
"dev:test": "tsx ./scripts/dev.ts test",
"dev:uniswap": "yarn dev:test uniswap",
"devtools": "yarn workspace devtools dev:tauri",
"docker:build": "DOCKER_BUILDKIT=1 docker build --ssh default -t one-test .",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"fix": "yarn fix:packages",
"fix:packages": "manypkg fix",
"fix:references": "update-ts-references",
"lint": "ultra -r --no-pretty lint",
"lint:fix": "ultra -r --no-pretty lint:fix",
"llink": "lllink ~/tamagui",
"npxone": "node ./packages/create-vxrn/run.js",
"one": "yarn workspace example-basic",
"profile": "tsx ./scripts/yarn-profile.ts",
"release": "tsx ./scripts/release.ts",
"sandbox": "yarn workspace test-sandbox dev",
"setup": "tsx ./scripts/setup.ts",
"site": "yarn workspace site dev",
"site:build": "yarn workspace site build:web",
"site:prod": "yarn site:build && yarn site:serve",
"site:serve": "yarn workspace site serve --host 0.0.0.0 --port 3000",
"start": "yarn workspace start dev",
"test": "yarn turbo:run test",
"test-ios": "yarn workspaces foreach -A run test-ios",
"test-macos": "yarn workspaces foreach -A run test-macos",
"test:docker": "DOCKER_BUILDKIT=1 docker build --no-cache --ssh default -t one-test . && docker run --rm one-test",
"test:one": "yarn workspace one test",
"test:one:dev": "yarn workspace one test:dev",
"turbo:run": "TURBO_TELEMETRY_DISABLED=1 turbo",
"typecheck": "turbo typecheck",
"upgrade:tamagui": "yarn up '*tamagui*' '@tamagui/*'",
"upgrade:tamagui:canary": "yarn up '*tamagui*'@canary '@tamagui/*'@canary",
"watch": "npm-run-all --parallel watch:ts watch:build",
"watch:build": "SKIP_TYPES_INITIAL=1 ultra -r --no-pretty --concurrency 400 watch",
"watch:js": "SKIP_TYPES=1 yarn watch:build",
"watch:ts": "ultra -r --no-pretty --concurrency 400 typecheck -w --preserveWatchOutput"
},
"dependencies": {
"@biomejs/biome": "^1.8.3",
"@manypkg/cli": "^0.19.1",
"@types/react": "^18.3.11",
"@types/react-native": "^0.73.0",
"check-dependency-version-consistency": "^3.0.3",
"lllink": "workspace:*",
"npm-run-all": "^4.1.5",
"p-map": "^7.0.2",
"patch-package": "^8.0.0",
"playwright": "^1.49.1",
"sst": "^3.6.18",
"ts-pattern": "^5.6.2",
"tsx": "^4.19.0",
"turbo": "^2.1.0",
"typescript": "^5.7.3",
"ultra-runner": "^3.10.5",
"update-ts-references": "^3.4.0",
"vitepress": "^1.1.4"
},
"packageManager": "[email protected]",
"engines": {
"node": "20.17.0",
"npm": "10.8.3"
},
"profile": {
"//": "yarn profile [name] to toggle package resolutions",
"react-19": {
"applied": false,
"resolutions": {
"react": "19.0.0",
"react-dom": "19.0.0"
}
},
"react-18": {
"applied": false,
"resolutions": {
"react": "18.3.1",
"react-dom": "18.3.1"
}
},
"//1": "useful for developing on tamagui and one at once",
"tamagui": {
"workspace": "~/tamagui"
}
}
}