-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
69 lines (69 loc) · 2.02 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lintfix": "next lint --fix",
"format": "prettier '**/*.{ts,tsx}' --write --ignore-path .gitignore"
},
"dependencies": {
"@directus/sdk": "14.0.0",
"@formatjs/intl-localematcher": "^0.4.2",
"@headlessui/react": "^1.7.18",
"@hookform/error-message": "^2.0.1",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@react-hook/resize-observer": "^1.2.6",
"@types/qs": "^6.9.14",
"@types/react": "18.2.67",
"@types/react-dom": "18.2.22",
"clsx": "^2.1.0",
"eslint": "8.44.0",
"eslint-config-next": "14.1.4",
"framer-motion": "^10.18.0",
"i18next": "^23.11.1",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-resources-to-backend": "^1.2.1",
"next-i18n-router": "^5.4.0",
"lodash.throttle": "^4.1.1",
"micromark": "^4.0.0",
"micromark-extension-gfm": "^3.0.0",
"next": "14.1.4",
"qs": "^6.12.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.3",
"react-i18next": "^14.1.0",
"react-markdown": "^8.0.7",
"react-slideshow-image": "^4.3.1",
"react-use": "^17.5.0",
"remark-gfm": "^3.0.1",
"server-only": "^0.0.1",
"tailwind-merge": "^1.14.0",
"theme-change": "^2.5.0",
"typescript": "5.1.6",
"ufo": "^1.5.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@iconify/react": "^4.1.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.12",
"@types/node": "18.16.1",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.19",
"daisyui": "^4.10.1",
"eslint-config-prettier": "^8.10.0",
"postcss": "^8.4.38",
"postcss-import": "^15.1.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.4.1",
"tailwindcss": "^3.4.3"
}
}