-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
59
60
{
"name": "sportujspolu",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"prepare": "husky install",
"lint": "eslint --ignore-path .gitignore '**/*.{js,jsx,ts,tsx}' --fix",
"prettier": "prettier --ignore-path .gitignore --write '**/*.{js,jsx,ts,tsx}'"
},
"dependencies": {
"@hookform/resolvers": "^3.3.1",
"classnames": "^2.3.2",
"date-fns": "^2.30.0",
"ky": "0.33.3",
"next": "15.1.4",
"next-themes": "^0.2.1",
"nookies": "^2.5.2",
"react": "18.3.1",
"react-aria-live": "^2.0.5",
"react-dom": "18.3.1",
"react-hook-form": "^7.46.2",
"sanitize-html": "^2.14.0",
"sass": "^1.77.2",
"sharp": "^0.32.6",
"slugify": "^1.6.6",
"yup": "^1.3.2"
},
"devDependencies": {
"@types/node": "^18.15.13",
"@types/prettier": "^2.7.2",
"@types/react": "^18.2.8",
"@types/react-aria-live": "^2.0.4",
"@types/react-dom": "^18.2.14",
"@types/sanitize-html": "^2.13.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.39.0",
"eslint-config-next": "13.4.4",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
},
"lint-staged": {
"src/**/*.{js,ts?(x)}": ["eslint --fix"],
"src/**/*.{js,ts,tsx}": ["prettier --write"]
}
}