forked from pingdotgg/uploadthing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "uploadthing-turbo",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": "20.x",
"pnpm": "8.x"
},
"scripts": {
"build:all": "turbo run build",
"build": "turbo run build --filter \"./packages/*\"",
"clean": "turbo run clean && git clean -xdf node_modules",
"dev:all": "turbo run dev",
"dev": "turbo run dev --filter \"./packages/*\"",
"lint": "turbo run lint && manypkg check",
"format:check": "prettier --check .",
"format": "prettier --write . --list-different",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "turbo run typecheck"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@manypkg/cli": "^0.21.2",
"@types/node": "^20.11.10",
"@uploadthing/eslint-config": "0.2.0",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"turbo": "^1.10.1",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.2"
}
}