-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.36 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
{
"name": "caiocampos.github.io",
"version": "0.1.0",
"private": true,
"scripts": {
"create-classes": "npx ts-node create-classes.ts",
"predev": "npm run create-classes",
"dev": "next dev",
"dev:full": "FULL_BUILD=true npm run dev",
"prebuild": "npm run create-classes",
"build": "next build",
"build:full": "FULL_BUILD=true npm run build",
"start": "serve out",
"lint": "next lint",
"libretranslate": "docker compose --file libretranslate-docker-compose.yml up -d --build --wait",
"libretranslate-stop": "docker compose --file libretranslate-docker-compose.yml down"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1",
"@radix-ui/react-slot": "^1.2",
"class-variance-authority": "^0.7",
"clsx": "^2.1",
"flag-icons": "^7.5.0",
"lucide-react": "^0.542",
"next": "15.5",
"next-themes": "0.4",
"react": "^19.1",
"react-dom": "^19.1",
"recharts": "^2.15.4",
"tailwind-merge": "^3.3",
"tailwindcss-animate": "^1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.12",
"@types/node": "^24.3",
"@types/react": "^19.1",
"@types/react-dom": "^19.1",
"eslint": "^9.34",
"eslint-config-next": "^15.5",
"mini-css-extract-plugin": "^2.9",
"postcss": "^8.5",
"tailwindcss": "^4.1.12",
"ts-node": "^10.9",
"typescript": "^5.8"
}
}