-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.2 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
{
"name": "vxrn-monorepo",
"private": true,
"version": "0.0.0",
"repository": {
"url": "https://github.com/universal-future/vxrn"
},
"workspaces": [
"./packages/*",
"./examples/*",
"./studio2"
],
"packageManager": "[email protected]",
"scripts": {
"postinstall": "patch-package",
"setup": "node -r esbuild-register ./scripts/setup.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"turbo:run": "TURBO_TELEMETRY_DISABLED=1 turbo",
"build": "yarn turbo:run build --filter='*' --filter='!example-*'",
"release": "node -r esbuild-register ./scripts/release.ts",
"check": "turbo check && manypkg check",
"clean:build": "yarn turbo:run clean:build",
"clean:ts": "tsc -b --clean tsconfig.json",
"clean": "yarn turbo:run clean:build",
"fix": "manypkg fix",
"lint:fix": "yarn lint:eslint --fix && ultra -r --no-pretty lint:fix",
"lint": "yarn lint:eslint && ultra -r --no-pretty lint",
"lint:eslint": "echo eslint && eslint '**/*.{ts,tsx}'",
"dev:example-vxs": "yarn workspace example-vxs dev:clean",
"dev:example-bare": "yarn workspace example-bare dev:clean",
"upgrade:tamagui": "yarn up '*tamagui*' '@tamagui/*'",
"test": "yarn turbo:run --concurrency=1 test",
"watch:build": "SKIP_TYPES_INITIAL=1 ultra -r --no-pretty --concurrency 400 watch",
"watch:js": "SKIP_TYPES=1 yarn watch:build",
"watch:ts": "tsc -b -w --preserveWatchOutput",
"watch": "npm-run-all --parallel watch:ts watch:build",
"vxs": "yarn workspace example-vxs"
},
"dependencies": {
"@biomejs/biome": "^1.6.3",
"@manypkg/cli": "^0.19.1",
"@types/eslint": "^8",
"@types/react": "^18.2.24",
"@types/react-native": "~0.70.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"check-dependency-version-consistency": "^3.0.3",
"esbuild-register": "^3.5.0",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.2",
"npm-run-all": "^4.1.5",
"p-map": "^7.0.2",
"patch-package": "^8.0.0",
"turbo": "^2.0.6",
"typescript": "^5.2.2",
"ultra-runner": "^3.10.5",
"vitepress": "^1.1.4"
}
}