-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.91 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
61
62
63
64
65
{
"name": "portfolio-site",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev:all": "chmod +x scripts/dev.sh && ./scripts/dev.sh",
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"fix": "prettier --write .",
"tsc": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@formkit/tempo": "^0.1.2",
"@icons-pack/react-simple-icons": "^10.2.0",
"@mlc-ai/web-llm": "^0.2.77",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.15.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.468.0",
"marked": "^4.0.6",
"next": "^15.1.0",
"next-themes": "^0.4.4",
"postcss": "^8.4.49",
"react": "18.3.1",
"react-dom": "^18.3.1",
"react-type-animation": "^3.2.0",
"simple-icons": "^13.21.0",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.16",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/marked": "5.0.2",
"@types/node": "^22.10.2",
"@types/prettier": "^3.0.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"globals": "^15.0.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"typescript": "^5.6.3"
}
}