-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "landing-it-consulting",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && eslint .",
"lint:fix": "prettier --write .",
"prepare": "husky",
"install:prod": "pnpm install --production"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@formatjs/intl-localematcher": "^0.5.4",
"@formfacade/embed-react": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@react-force/date-utils": "^3.4.0",
"@tabler/icons-react": "^3.12.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"dayjs": "^1.11.13",
"formik": "^2.4.6",
"framer-motion": "^11.3.30",
"i18next": "^23.14.0",
"i18next-resources-to-backend": "^1.2.1",
"lucide": "^0.433.0",
"lucide-react": "^0.428.0",
"mini-svg-data-uri": "^1.4.4",
"negotiator": "^0.6.3",
"next": "14.2.5",
"next-intl": "^3.17.6",
"react": "^18",
"react-countdown": "^2.3.6",
"react-datepicker": "^7.3.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18",
"react-element-to-jsx-string": "^15.0.0",
"react-i18next": "^15.0.1",
"react-icons": "^5.3.0",
"react-toastify": "^10.0.5",
"react-tooltip": "^5.28.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"yup": "^1.4.0"
},
"devDependencies": {
"@types/negotiator": "^0.6.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}