-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "autofiller",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev --parallel",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"prepare": "husky install",
"typecheck": "turbo typecheck",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean"
},
"devDependencies": {
"@autofiller/tsconfig": "workspace:*",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"eslint-plugin-perfectionist": "^2.10.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"turbo": "^1.12.4",
"typescript": "^5.4.5"
},
"overrides": {
"@react-pdf/fns": "2.0.1",
"@react-pdf/font": "2.3.7",
"@react-pdf/image": "2.2.2",
"@react-pdf/layout": "3.6.3",
"@react-pdf/pdfkit": "3.0.2",
"@react-pdf/png-js": "2.2.0",
"@react-pdf/primitives": "3.0.1",
"@react-pdf/render": "3.2.7",
"@react-pdf/renderer": "3.1.14",
"@react-pdf/stylesheet": "4.1.8",
"@react-pdf/textkit": "4.2.0",
"@react-pdf/types": "2.3.4",
"@react-pdf/yoga": "4.1.2",
"sharp": "^0.33.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}