-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.83 KB
/
package.json
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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:next": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"installPackagesForSyncSvg": "sudo apt-get update && sudo apt-get install -y unzip curl graphicsmagick",
"syncSvg": "yarn run installPackagesForSyncSvg && npx tsx lib/syncSvg.ts"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-radio-group": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@types/node": "22.10.5",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"autoprefixer": "10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"eslint": "9.17.0",
"eslint-config-next": "15.1.3",
"framer-motion": "^11.15.0",
"fs-extra": "^11.2.0",
"html-react-parser": "^5.2.2",
"lucide-react": "^0.469.0",
"next": "^15.1.3",
"next-mdx-remote": "^5.0.0",
"npm-run-all": "^4.1.5",
"page-count": "^0.0.4",
"pdf2pic": "^3.1.3",
"pocketbase": "^0.25.0",
"postcss": "^8.4.31",
"potrace": "^2.1.8",
"react": "19.0.0",
"react-animated-cursor": "^2.11.2",
"react-dom": "19.0.0",
"tailwind-merge": "^2.6.0",
"tailwindcss": "3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.7.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9"
},
"resolutions": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}