package.json

 1{
 2  "name": "zed-theme-tool",
 3  "version": "0.1.0",
 4  "private": true,
 5  "scripts": {
 6    "dev": "next dev",
 7    "build": "next build",
 8    "start": "next start",
 9    "lint": "next lint"
10  },
11  "dependencies": {
12    "@ianvs/prettier-plugin-sort-imports": "^3.7.1",
13    "@typescript-eslint/eslint-plugin": "^5.49.0",
14    "@typescript-eslint/parser": "^5.49.0",
15    "@next/font": "13.1.6",
16    "@types/node": "18.13.0",
17    "@types/react": "18.0.27",
18    "@types/react-dom": "18.0.10",
19    "eslint": "8.33.0",
20    "eslint-config-next": "13.1.6",
21    "next": "13.1.6",
22    "react": "18.2.0",
23    "react-dom": "18.2.0",
24    "typescript": "4.9.5",
25    "eslint-config-airbnb": "19.0.4",
26    "eslint-config-prettier": "^8.6.0",
27    "eslint-import-resolver-typescript": "3.5.3",
28    "eslint-plugin-import": "2.27.5",
29    "eslint-plugin-jsx-a11y": "6.7.1",
30    "eslint-plugin-react": "7.32.1",
31    "eslint-plugin-react-hooks": "4.6.0",
32    "prettier": "^2.7.1",
33    "prettier-plugin-tailwindcss": "^0.1.12"
34  },
35  "prettier": {
36    "arrowParens": "always",
37    "printWidth": 80,
38    "tabWidth": 4,
39    "trailingComma": "all",
40    "singleQuote": true,
41    "semi": true,
42    "importOrder": [
43        "^@/lib/(.*)$",
44        "^@/app/(.*)$",
45        "^@/ui/(.*)$",
46        "^[./]"
47    ],
48    "importOrderBuiltinModulesToTop": true,
49    "importOrderCaseInsensitive": true,
50    "importOrderParserPlugins": [
51        "typescript",
52        "jsx",
53        "decorators-legacy"
54    ],
55    "importOrderMergeDuplicateImports": true,
56    "importOrderCombineTypeAndValueImports": true,
57    "importOrderSeparation": true,
58    "importOrderSortSpecifiers": true
59}
60}