-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "cartoons",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "rm -rf .next && rm -rf node_modules/.cache && rm -rf build",
"generate-barrels": "barrelsby -d ./src/utils -e index.ts"
},
"dependencies": {
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.1.6",
"@mui/material-nextjs": "^6.1.1",
"@svgr/webpack": "^8.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@vercel/analytics": "^1.4.1",
"@welldone-software/why-did-you-render": "^8.0.3",
"embla-carousel-react": "^8.3.1",
"firebase": "^10.14.1",
"framer-motion": "^11.11.17",
"fuse.js": "^7.0.0",
"next": "14.2.13",
"nookies": "^2.5.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-fast-marquee": "^1.6.5",
"react-hook-form": "^7.53.0",
"react-perfect-scrollbar": "^1.5.8",
"react-player": "^2.16.0",
"sass": "^1.79.3",
"sharp": "^0.33.5",
"uuid": "^11.0.2",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@types/react": "^18",
"@types/react-slick": "^0.23.13",
"@types/webpack": "^5.28.5",
"barrelsby": "^2.8.1",
"eslint-config-next": "14.2.13",
"prettier": "^3.3.3",
"typescript": "^5.6.0"
},
"findUnusedExports": {
"exclude": [
"./.next/**/*",
"./node_modules/**/*",
"**/page.tsx"
]
}
}