-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "fluid-design",
"version": "2.6.1",
"description": "A collection of beautifully designed components that are responsive, supports features like dark mode and a11y with elegant transitions.",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:css": "tailwindcss build styles/globals.css -o public/iframe/tw-iframe.css --minify",
"start": "next start",
"commit": "git-cz",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"format": "prettier -w .",
"postbuild": "next-sitemap",
"semantic-release": "semantic-release --branches main"
},
"dependencies": {
"@code-hike/mdx": "0.8.1-next.0",
"@docsearch/react": "^3.3.3",
"@fluid-design/fluid-ui": "^2.6.0",
"@hcaptcha/react-hcaptcha": "^1.4.4",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.16",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.2.3",
"@sendgrid/mail": "^7.7.0",
"@vercel/og": "0.3.0",
"add": "^2.0.6",
"clsx": "^1.2.1",
"fast-glob": "^3.2.12",
"formik": "^2.2.9",
"framer-motion": "^10.0.2",
"github-slugger": "^1.5.0",
"gray-matter": "^4.0.3",
"intersection-observer": "^0.12.2",
"next": "^13.2.3",
"next-sitemap": "^3.1.52",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.8.0",
"remark-gfm": "^3.0.1",
"scroll-into-view-if-needed": "^3.0.6",
"shiki": "^0.12.1",
"swiper": "^9.1.0",
"tailwind-merge": "^1.10.0",
"yup": "^0.32.11",
"zustand": "^4.3.5"
},
"devDependencies": {
"@headlessui/tailwindcss": "^0.1.2",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"autoprefixer": "^10.4.13",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.35.0",
"eslint-config-next": "^13.2.3",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"flag-icons": "^6.6.6",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.4",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "https://github.com/fluid-design-io/fluid.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
}
}