-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.73 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.73 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
{
"name": "bytebase.com",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "PORT=3001 next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"postbuild": "next-sitemap",
"start": "next start",
"type-check": "tsc",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:md": "markdownlint --ignore-path .gitignore .",
"lint:md:fix": "markdownlint --fix --ignore-path .gitignore .",
"format": "prettier --write \"**/*.{css,js,jsx,ts,tsx,json}\"",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@react-hook/intersection-observer": "^3.1.2",
"@react-hook/throttle": "^2.2.0",
"@react-hook/window-scroll": "^1.3.0",
"@react-hook/window-size": "^3.1.1",
"@rive-app/react-canvas": "^3.0.57",
"@types/js-yaml": "^4.0.9",
"clsx": "^1.2.1",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^2.30.0",
"framer-motion": "^10.18.0",
"glob": "^10.4.5",
"googleapis": "^171.4.0",
"gray-matter": "^4.0.3",
"he": "^1.2.0",
"js-yaml": "^4.1.0",
"lucide-react": "^0.276.0",
"md5": "^2.3.0",
"next": "^14.2.16",
"next-international": "^1.2.4",
"next-mdx-remote": "^6.0.0",
"next-plausible": "^3.12.2",
"next-sitemap": "^4.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.1",
"react-icons": "^5.3.0",
"react-paginate": "^8.2.0",
"react-syntax-highlighter": "^15.6.1",
"react-use": "^17.5.1",
"remark-gfm": "^4.0.1",
"sharp": "^0.32.6",
"slug": "^8.2.3",
"yup": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@next/bundle-analyzer": "^14.2.16",
"@svgr/webpack": "^7.0.0",
"@tailwindcss/typography": "^0.5.15",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/he": "^1.2.3",
"@types/md5": "^2.3.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/slug": "^5.0.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"autoprefixer": "^10.4.20",
"code-inspector-plugin": "^0.18.0",
"encoding": "^0.1.13",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.16",
"eslint-config-prettier": "^8.10.0",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"markdownlint-cli": "^0.33.0",
"postcss": "^8.4.47",
"postcss-import": "^15.1.0",
"postcss-nesting": "^11.3.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"react-tooltip": "^5.28.0",
"svgo-loader": "^4.0.0",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"url-loader": "^4.1.1"
}
}