-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "concurrently \"npm run lint:next\" \"npm run lint:prettier\"",
"lint:next": "next lint",
"lint:prettier": "prettier --check \"**/*.{js,jsx}\"",
"format": "prettier --write \"**/*.{js,jsx,json}\""
},
"dependencies": {
"@headlessui/react": "2.2.0",
"@phosphor-icons/react": "2.1.7",
"@vercel/analytics": "1.5.0",
"@vercel/speed-insights": "1.2.0",
"concurrently": "9.1.2",
"next": "15.5.9",
"react": "19.0.0",
"react-device-detect": "2.2.3",
"react-dom": "19.0.0",
"react-pdf": "9.2.1",
"uuid": "11.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "3",
"eslint": "9",
"eslint-config-next": "15.1.4",
"eslint-plugin-jsx-a11y": "6.10.2",
"postcss": "8",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"server-only": "0.0.1",
"tailwindcss": "3.4.1",
"tailwindcss-motion": "1.0.1"
}
}