-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "portfolio-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettify": "prettier --write \"**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.0",
"@mui/material": "^6.4.0",
"@vercel/analytics": "^1.4.1",
"chroma-js": "^3.1.2",
"clsx": "^2.1.1",
"hex-rgb": "^5.0.0",
"js-cookie": "^3.0.5",
"next": "15.1.4",
"react": "^19.0.0",
"react-color": "^2.19.3",
"react-colorful": "^5.6.1",
"react-dom": "^19.0.0",
"react-resizable": "^3.0.5",
"rgb-hex": "^4.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/chroma-js": "^3.1.1",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-color": "^3.0.13",
"@types/react-dom": "^19",
"@types/react-resizable": "^3.0.8",
"eslint": "^9",
"eslint-config-next": "15.1.4",
"postcss": "^8",
"prettier": "3.4.2",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}