-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) 路 2.75 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) 路 2.75 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
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": "fix.security",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"codegen": "graphql-codegen --config codegen.yml && prettier -w src/generated/hashnode",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit --incremental false",
"format": "prettier -w .",
"format:check": "prettier -c .",
"optimize": "svgo -rf ."
},
"dependencies": {
"@graphql-typed-document-node/core": "3.2.0",
"@headlessui/react": "2.2.0",
"@hookform/resolvers": "3.9.1",
"@next/third-parties": "15.0.2",
"clsx": "2.1.1",
"entities": "5.0.0",
"feed": "4.2.2",
"github-slugger": "2.0.0",
"graphql": "16.9.0",
"graphql-request": "7.1.0",
"html-react-parser": "5.1.18",
"js-cookie": "3.0.5",
"lodash": "4.17.21",
"next": "15.0.2",
"next-share": "0.27.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-google-recaptcha": "3.1.0",
"react-hook-form": "7.53.1",
"react-icons": "5.3.0",
"react-infinite-scroll-hook": "5.0.1",
"react-markdown": "9.0.1",
"react-syntax-highlighter": "15.6.1",
"rehype-raw": "7.0.0",
"remark": "15.0.1",
"remark-gfm": "4.0.0",
"remark-smartypants": "3.0.2",
"server-only": "0.0.1",
"sharp": "0.33.5",
"tailwind-merge": "2.5.4",
"zod": "3.23.8",
"zod-form-data": "2.0.2"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/typed-document-node": "5.0.11",
"@graphql-codegen/typescript": "4.1.1",
"@graphql-codegen/typescript-operations": "4.3.1",
"@svgr/webpack": "8.1.0",
"@tailwindcss/forms": "0.5.9",
"@types/js-cookie": "3.0.6",
"@types/lodash": "4.17.13",
"@types/react": "18.3.12",
"@types/react-google-recaptcha": "2.1.9",
"@types/react-syntax-highlighter": "15.5.13",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"autoprefixer": "10.4.20",
"encoding": "0.1.13",
"eslint": "9.13.0",
"eslint-config-next": "15.0.2",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-no-relative-import-paths": "1.5.5",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-tailwindcss": "0.6.8",
"schema-dts": "1.1.2",
"svgo": "3.3.2",
"tailwindcss": "3.4.14",
"typescript": "5.6.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier -w"
],
"**/*.{json,css,scss,md,webmanifest}": [
"prettier -w"
]
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}