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