Skip to content

Commit b39dae8

Browse files
authored
Merge pull request #7 from TheMath123/matheus/updates
Matheus/updates
2 parents 2cd2293 + bdefb71 commit b39dae8

67 files changed

Lines changed: 4538 additions & 4310 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Secrets
2-
API_LAYER_KEY=[api-key]
3-
API_IPINFO_TOKEN=[token]
2+
API_IPINFO_TOKEN="your_ipinfo_token_here"
3+
UMAMI_TOKEN="your_umami_token_here"

.vscode/settings.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"[javascript]": {
3+
"editor.defaultFormatter": "biomejs.biome"
4+
},
5+
"[json]": {
6+
"editor.defaultFormatter": "biomejs.biome"
7+
},
8+
"[jsonc]": {
9+
"editor.defaultFormatter": "biomejs.biome"
10+
},
11+
"[typescript]": {
12+
"editor.defaultFormatter": "biomejs.biome"
13+
},
14+
"[typescriptreact]": {
15+
"editor.defaultFormatter": "biomejs.biome"
16+
},
17+
"editor.codeActionsOnSave": {
18+
"quickfix.biome": "explicit",
19+
"source.organizeImports.biome": "explicit"
20+
},
21+
"editor.defaultFormatter": "biomejs.biome",
22+
"editor.formatOnPaste": true,
23+
"editor.formatOnSave": true,
24+
"emmet.showExpandedAbbreviation": "never",
25+
"eslint.enable": false,
26+
"prettier.enable": false,
27+
"typescript.tsdk": "node_modules/typescript/lib",
28+
"cSpell.words": ["Genergia"]
29+
}

biome.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/2.2.0/schema.json",
3+
"vcs": {
4+
"enabled": true,
5+
"clientKind": "git",
6+
"useIgnoreFile": true
7+
},
8+
"files": {
9+
"ignoreUnknown": true,
10+
"includes": ["**", "!node_modules", "!.next", "!dist", "!build"]
11+
},
12+
"formatter": {
13+
"enabled": true,
14+
"indentStyle": "space",
15+
"indentWidth": 2
16+
},
17+
"linter": {
18+
"enabled": true,
19+
"rules": {
20+
"recommended": true,
21+
"suspicious": {
22+
"noUnknownAtRules": "off"
23+
},
24+
"correctness": {
25+
"useExhaustiveDependencies": "off"
26+
}
27+
},
28+
"domains": {
29+
"next": "recommended",
30+
"react": "recommended"
31+
}
32+
},
33+
"assist": {
34+
"actions": {
35+
"source": {
36+
"organizeImports": "on"
37+
}
38+
}
39+
}
40+
}

bun.lock

Lines changed: 410 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "",
8+
"css": "src/app/globals.css",
9+
"baseColor": "zinc",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"iconLibrary": "phosphor-icons",
14+
"aliases": {
15+
"components": "@/components",
16+
"utils": "@/lib/utils",
17+
"ui": "@/components/ui",
18+
"lib": "@/lib",
19+
"hooks": "@/hooks"
20+
}
21+
}

package.json

Lines changed: 43 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,53 @@
11
{
2-
"name": "migrate-startmessage",
3-
"version": "0.1.0",
2+
"name": "start-message",
3+
"version": "3.1.0",
4+
"author": {
5+
"name": "Matheus Agostinho",
6+
"email": "contact@matheuspa.com",
7+
"github": "https://github.com/TheMath123"
8+
},
49
"private": true,
10+
"license": "GPL-3.0-only",
511
"scripts": {
6-
"dev": "next dev",
7-
"build": "next build",
12+
"dev": "next dev --turbopack",
13+
"build": "next build --turbopack",
814
"start": "next start",
9-
"lint": "next lint"
15+
"lint": "biome check",
16+
"format": "biome format --write"
1017
},
1118
"dependencies": {
12-
"@hookform/resolvers": "^3.3.2",
13-
"clsx": "^2.0.0",
14-
"next": "14.0.1",
15-
"react": "^18",
16-
"react-dom": "^18",
17-
"react-hook-form": "^7.48.2",
18-
"tailwind-merge": "^2.1.0",
19-
"zod": "^3.22.4"
19+
"@hookform/resolvers": "^5.2.0",
20+
"@phosphor-icons/react": "^2.1.10",
21+
"@radix-ui/react-checkbox": "^1.3.3",
22+
"@radix-ui/react-dialog": "^1.1.15",
23+
"@radix-ui/react-dropdown-menu": "^2.1.16",
24+
"@radix-ui/react-label": "^2.1.7",
25+
"@radix-ui/react-popover": "^1.1.15",
26+
"@radix-ui/react-select": "^2.2.6",
27+
"@radix-ui/react-separator": "^1.1.7",
28+
"@radix-ui/react-slot": "^1.2.3",
29+
"@radix-ui/react-tooltip": "^1.2.8",
30+
"@t3-oss/env-nextjs": "^0.13.8",
31+
"class-variance-authority": "^0.7.1",
32+
"clsx": "^2.1.1",
33+
"cmdk": "^1.1.1",
34+
"next": "15.5.2",
35+
"next-themes": "^0.4.6",
36+
"react": "19.1.1",
37+
"react-dom": "19.1.1",
38+
"react-hook-form": "^7.62.0",
39+
"tailwind-merge": "^3.3.1",
40+
"zod": "^4.1.5"
2041
},
2142
"devDependencies": {
22-
"@types/node": "^20",
23-
"@types/react": "^18",
24-
"@types/react-dom": "^18",
25-
"autoprefixer": "^10.0.1",
26-
"eslint": "^8",
27-
"eslint-config-next": "14.0.1",
28-
"postcss": "^8",
29-
"tailwindcss": "^3.3.0",
30-
"typescript": "^5"
43+
"@biomejs/biome": "2.2.2",
44+
"@tailwindcss/postcss": "4.1.12",
45+
"@types/node": "24.3.0",
46+
"@types/react": "19.1.12",
47+
"@types/react-dom": "19.1.9",
48+
"postcss": "8",
49+
"tailwindcss": "4.1.12",
50+
"tw-animate-css": "^1.3.7",
51+
"typescript": "5"
3152
}
3253
}

0 commit comments

Comments
 (0)