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 "@next/font": "13.1.6",
14 "@types/chroma-js": "^2.1.5",
15 "@types/node": "18.13.0",
16 "@types/react": "18.0.27",
17 "@types/react-dom": "18.0.10",
18 "@typescript-eslint/eslint-plugin": "^5.49.0",
19 "@typescript-eslint/parser": "^5.49.0",
20 "chroma-js": "^2.4.2",
21 "eslint": "8.33.0",
22 "eslint-config-airbnb": "19.0.4",
23 "eslint-config-next": "13.1.6",
24 "eslint-config-prettier": "^8.6.0",
25 "eslint-import-resolver-typescript": "3.5.3",
26 "eslint-plugin-import": "2.27.5",
27 "eslint-plugin-jsx-a11y": "6.7.1",
28 "eslint-plugin-react": "7.32.1",
29 "eslint-plugin-react-hooks": "4.6.0",
30 "next": "13.1.6",
31 "prettier": "^2.7.1",
32 "prettier-plugin-tailwindcss": "^0.1.12",
33 "react": "18.2.0",
34 "react-dom": "18.2.0",
35 "typescript": "4.9.5"
36 },
37 "prettier": {
38 "arrowParens": "always",
39 "printWidth": 80,
40 "tabWidth": 4,
41 "trailingComma": "all",
42 "singleQuote": true,
43 "semi": true,
44 "importOrder": [
45 "^@/lib/(.*)$",
46 "^@/app/(.*)$",
47 "^@/ui/(.*)$",
48 "^[./]"
49 ],
50 "importOrderBuiltinModulesToTop": true,
51 "importOrderCaseInsensitive": true,
52 "importOrderParserPlugins": [
53 "typescript",
54 "jsx",
55 "decorators-legacy"
56 ],
57 "importOrderMergeDuplicateImports": true,
58 "importOrderCombineTypeAndValueImports": true,
59 "importOrderSeparation": true,
60 "importOrderSortSpecifiers": true
61 }
62}