-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 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
{
"name": "portfolio",
"private": true,
"version": "1.0.0",
"type": "module",
"engines": {
"node": "22.x"
},
"knip": {
"ignoreDependencies": [
"serve",
"husky"
]
},
"scripts": {
"dev": "bun run vite",
"build": "bun run vite build && bun run scripts/prerender.js",
"check": "bunx biome check --write --unsafe .",
"start": "bun run serve -s dist",
"knip": "knip",
"heroku-prebuild": "rm -f package-lock.json",
"heroku-postbuild": "bun install && bun run vite build && bun run scripts/prerender.js && rm -rf .cache/puppeteer node_modules/puppeteer node_modules/@puppeteer"
},
"dependencies": {
"@fontsource-variable/geist": "^5.2.8",
"@radix-ui/react-slot": "^1.2.4",
"@react-spring/web": "^9.7.5",
"@tabler/icons-react": "^3.36.1",
"@types/opentype.js": "^1.3.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.18.2",
"moment-timezone": "^0.6.0",
"motion": "^12.35.1",
"opentype.js": "^1.3.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-grab": "^0.1.26",
"react-markdown": "^10.1.0",
"serve": "^14.2.5",
"shadcn": "^4.0.0",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@tailwindcss/vite": "^4.2.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"husky": "^9.1.7",
"knip": "^5.84.1",
"puppeteer": "^24.37.4",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^6.4.1"
}
}