-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.03 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
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
{
"name": "talkarr-website",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build --turbopack",
"dev": "next dev --turbopack",
"lint": "eslint src/",
"start": "next start",
"typecheck": "tsc --noEmit",
"typegen": "next typegen",
"typegen:with-check": "if [ ! -f next-env.d.ts ]; then yarn typegen; fi",
"prebuild": "yarn typegen:with-check",
"pretypecheck": "yarn typegen:with-check",
"postinstall": "patch-package"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.6",
"@mui/material": "^7.3.6",
"@mui/material-nextjs": "^7.3.6",
"next": "16.0.8",
"react": "19.1.2",
"react-dom": "19.1.0",
"react-slick": "^0.31.0",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.33.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@stylistic/eslint-plugin": "^5.2.3",
"@svgr/webpack": "^8.1.0",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-slick": "^0.23.13",
"eslint": "^9",
"eslint-config-airbnb-extended": "^2.2.0",
"eslint-config-next": "15.5.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-mui-path-imports": "^0.0.15",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^60.0.0",
"globals": "^16.3.0",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.6.2",
"typescript": "^5",
"typescript-eslint": "^8.39.1"
}
}