-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.38 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": "ban12-site",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"type-check": "turbo type-check",
"clean": "turbo clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky",
"ci:deploy": "node .github/scripts/deploy-to-vercel.mjs"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"turbo": "catalog:turbo"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"prettier": {
"arrowParens": "always",
"trailingComma": "all",
"singleQuote": true,
"semi": false,
"importOrder": [
"<BUILTIN_MODULES>",
"^(react/(.*)$)|^(react$)",
"^(next/(.*)$)|^(next$)",
"<THIRD_PARTY_MODULES>",
"",
"^types$",
"^#/types/(.*)$",
"^#/config/(.*)$",
"^#/lib/(.*)$",
"^#/hooks/(.*)$",
"^#/components/ui/(.*)$",
"^#/components/(.*)$",
"^#/styles/(.*)$",
"^#/app/(.*)$",
"",
"^[./]"
],
"importOrderParserPlugins": [
"typescript",
"jsx",
"decorators-legacy"
],
"plugins": [
"@ianvs/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss"
]
}
}