-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.2 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "vortex",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"src/**/*.{ts,tsx,json}\" --tab-width 4"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"useTabs": false,
"semi": false,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "none",
"bracketSpacing": true,
"bracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "lf",
"plugins": [
"prettier-plugin-organize-imports"
]
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": true
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked"
],
"ignorePatterns": [
"*.d.ts"
],
"rules": {
"@typescript-eslint/consistent-type-imports": [
"error",
{
"prefer": "type-imports",
"fixStyle": "inline-type-imports"
}
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/require-await": "off",
"@typescript-eslint/array-type": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@next/next/no-page-custom-font": "off",
"@typescript-eslint/unbound-method": "off",
"@typescript-eslint/no-unsafe-enum-comparison": "off",
"@typescript-eslint/no-misused-promises": "off"
}
},
"dependencies": {
"@johnn-e/react-mesh-gradient": "^1.1.1",
"@nextui-org/react": "^2.3.6",
"@storybook/react": "^8.1.11",
"axios": "^1.9.0",
"axios-hooks": "^5.1.1",
"cheerio": "^1.0.0-rc.12",
"color-rgba": "^3.0.0",
"framer-motion": "^11.2.4",
"human-number": "^2.0.4",
"humanize-number": "^0.0.2",
"humanize-plus": "^1.8.2",
"lucide-react": "^0.378.0",
"moment": "^2.30.1",
"next": "15.4.10",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.2.1",
"react-spinners": "^0.13.8",
"sharp": "^0.34.2",
"simple-markdown": "^0.7.3",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.7",
"@types/color-rgba": "^2.1.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}