-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.9 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
{
"name": "fmhy",
"version": "6.5.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "pnpm scrape && next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"dev:scrape": "tsx watch ./src/scraper/index.ts",
"scrape": "tsx ./src/scraper/index.ts",
"test-format": "tsx ./src/scraper/test-format.ts",
"prettier": "prettier --write ."
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@mantine/core": "^6.0.21",
"@mantine/form": "^6.0.21",
"@mantine/hooks": "^6.0.21",
"@mantine/next": "^6.0.21",
"@mantine/spotlight": "^6.0.21",
"@radix-ui/react-icons": "^1.3.0",
"cheerio": "1.0.0-rc.12",
"class-variance-authority": "^0.7.0",
"clsx": "^1.2.1",
"flexsearch": "0.7.21",
"github-slugger": "^2.0.0",
"googleapis": "^123.0.0",
"hast-util-to-mdast": "^10.1.0",
"lucide-react": "^0.220.0",
"mdast-util-to-markdown": "^2.1.0",
"mdast-util-toc": "^6.1.1",
"next": "14.2.5",
"next-plausible": "^3.11.3",
"next-seo": "^6.4.0",
"node-fetch": "^3.3.2",
"nuqs": "^1.17.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^9.0.1",
"react-wrap-balancer": "^1.1.0",
"remark": "^14.0.3",
"remark-gfm": "^4.0.0",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"unist-util-visit": "^4.1.2",
"zustand": "^4.4.6"
},
"devDependencies": {
"@types/flexsearch": "^0.7.6",
"@types/node": "20.2.1",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"eslint": "8.41.0",
"eslint-config-next": "14.0.0",
"postcss": "8.4.23",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "3.3.2",
"tsx": "^4.5.0",
"typescript": "5.0.4"
}
}