-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "pokeguru",
"private": true,
"version": "1.6.0",
"description": "Pokémon TCG card database with pricing, set browsing, and card scanning",
"author": "LIN4CRE",
"license": "MIT",
"repository": "github:LIN4CRE/PokeGuru",
"bugs": "https://github.com/LIN4CRE/PokeGuru/issues",
"homepage": "https://lin4cre.github.io/PokeGuru",
"type": "module",
"overrides": {
"esbuild": "0.28.1"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"deploy": "npm run build && npx gh-pages -d dist -m \"deploy: $(git log --oneline -1)\""
},
"dependencies": {
"clsx": "2.1.1",
"lucide-react": "^1.18.0",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-router-dom": "^7.17.0",
"tailwind-merge": "3.4.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.1",
"@types/node": "22.19.17",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"gh-pages": "^6.3.0",
"tailwindcss": "4.1.17",
"typescript": "5.9.3",
"vite": "^8.0.16"
}
}