-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.97 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
{
"name": "pd",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "bun --bun vite dev",
"generate-routes": "tsr generate",
"build": "bun --bun vite build",
"preview": "bun --bun vite preview",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write . && eslint --fix .",
"check": "prettier --check .",
"start": "bun run .output/server/index.mjs"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.3.1",
"@fortawesome/free-brands-svg-icons": "^7.3.1",
"@fortawesome/free-regular-svg-icons": "^7.3.1",
"@fortawesome/free-solid-svg-icons": "^7.3.1",
"@fortawesome/react-fontawesome": "^3.5.0",
"@radix-ui/react-slot": "^1.3.1",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "latest",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-router": "latest",
"@tanstack/react-router-devtools": "latest",
"@tanstack/react-start": "latest",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"embla-carousel": "^8.6.0",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.42.2",
"lucide-react": "^1.26.0",
"nitro": "3.0.260610-beta",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.1.18",
"zod": "^4.4.3"
},
"devDependencies": {
"@tanstack/devtools-vite": "latest",
"@tanstack/eslint-config": "latest",
"@tanstack/router-cli": "^1.132.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"typescript": "^6.0.2",
"vite": "^8.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
]
}
}