-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint:prettier": "prettier --cache --check --ignore-path .gitignore --ignore-path .prettierignore .",
"prettier": "prettier --loglevel silent --write \"\" --cache",
"types:check": "turbo run types:check",
"release": "turbo run build --filter=./packages/* && changeset publish",
"version": "changeset version && pnpm install --lockfile-only"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vercel/style-guide": "^6.0.0",
"eslint": "^8.57.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-tsdoc": "^0.3.0",
"husky": "^9.1.4",
"prettier": "^3.3.3",
"turbo": "^2.0.9",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.17.0"
},
"dependencies": {
"@changesets/cli": "^2.27.7",
"@hookform/resolvers": "^3.9.0",
"react-hook-form": "^7.53.0",
"sharp": "^0.33.4",
"tsup": "^8.1.1",
"tsx": "^4.17.0"
}
}