-
Notifications
You must be signed in to change notification settings - Fork 313
/
package.json
69 lines (69 loc) · 2.17 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
{
"name": "uploadthing-turbo",
"private": true,
"type": "module",
"engines": {
"node": ">=20.x",
"pnpm": "9.x"
},
"packageManager": "pnpm@9.4.0",
"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...",
"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"
},
"dependencies": {
"@actions/github": "^6.0.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@effect/vitest": "0.13.3",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@manypkg/cli": "^0.21.3",
"@playwright/test": "1.45.0",
"@prettier/sync": "^0.5.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/bun": "^1.1.5",
"@types/node": "^20.14.0",
"@uploadthing/eslint-config": "workspace:*",
"@vitest/coverage-v8": "^2.1.2",
"happy-dom": "^13.6.2",
"msw": "2.2.13",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"turbo": "2.1.3",
"typescript": "^5.5.2",
"uploadthing": "workspace:*",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.2"
},
"pnpm": {
"patchedDependencies": {
"msw@2.2.13": "patches/msw@2.2.13.patch",
"@mswjs/interceptors@0.26.15": "patches/@mswjs__interceptors@0.26.15.patch"
}
}
}