-
Notifications
You must be signed in to change notification settings - Fork 324
/
package.json
60 lines (60 loc) · 1.92 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
{
"name": "uploadthing-turbo",
"private": true,
"type": "module",
"engines": {
"node": ">=22.x",
"pnpm": "9.x"
},
"packageManager": "[email protected]",
"workspaces": [
"docs",
"examples/*",
"examples/backend-adapters/*",
"packages/*",
"packages/nuxt/*",
"tooling/*"
],
"scripts": {
"build:all": "turbo run build",
"build:vanilla": "turbo run build --filter uploadthing...",
"build:react": "turbo run build --filter @uploadthing/react...",
"build": "turbo run build --filter \"./packages/*\" --concurrency=15",
"clean": "turbo run clean && git clean -xdf node_modules",
"dev:all": "turbo watch dev",
"dev": "turbo watch dev --filter \"./packages/*\"",
"dev:vanilla": "turbo watch dev --filter uploadthing...",
"dev:expo": "turbo watch dev --filter @uploadthing/expo...",
"dev:react": "turbo watch dev --filter @uploadthing/react...",
"dev:pg": "turbo watch dev --filter next-playground...",
"dev:docs": "turbo watch dev --filter docs...",
"lint": "turbo run lint && manypkg check",
"format:check": "prettier --check .",
"format": "prettier --write . --list-different",
"test": "vitest run",
"test:all": "turbo test",
"test:watch": "vitest",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@actions/github": "^6.0.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@effect/vitest": "0.16.0",
"@manypkg/cli": "^0.23.0",
"@prettier/sync": "^0.5.2",
"@types/bun": "^1.1.14",
"@types/node": "^22.10.0",
"@uploadthing/eslint-config": "workspace:*",
"@uploadthing/prettier-config": "workspace:*",
"@vitest/browser": "^2.1.8",
"@vitest/coverage-v8": "^2.1.8",
"msw": "2.7.0",
"playwright": "1.49.1",
"turbo": "2.3.3",
"typescript": "5.7.2",
"uploadthing": "workspace:*",
"vitest": "^2.1.8"
},
"prettier": "@uploadthing/prettier-config"
}