-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.27 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
{
"name": "bytebase-typescript-next",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"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": {
"@docsearch/react": "^3.3.4",
"@react-hook/intersection-observer": "^3.1.1",
"@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.43",
"@tailwindcss/line-clamp": "^0.4.4",
"@types/algoliasearch": "^4.0.0",
"algoliasearch": "^4.17.0",
"clsx": "^1.2.1",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^2.29.3",
"framer-motion": "^10.10.0",
"glob": "^10.1.0",
"gray-matter": "^4.0.3",
"md5": "^2.3.0",
"next": "^13.2.4",
"next-mdx-remote": "^4.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-paginate": "^8.2.0",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^3.0.1",
"slugify": "^1.6.6"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@svgr/webpack": "^7.0.0",
"@tailwindcss/typography": "^0.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/md5": "^2.3.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.6",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"autoprefixer": "^10.4.14",
"encoding": "^0.1.13",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.8.0",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"markdownlint-cli": "^0.33.0",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-nesting": "^11.2.1",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"react-tooltip": "^5.11.1",
"svgo-loader": "^4.0.0",
"tailwindcss": "^3.2.7",
"typescript": "^5.0.2",
"url-loader": "^4.1.1"
}
}