-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 999 Bytes
/
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
{
"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",
"concurrently": "^9.1.2",
"next": "15.1.4",
"react": "^19.0.0",
"react-device-detect": "^2.2.3",
"react-dom": "^19.0.0",
"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"
}
}