-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 3.22 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
93
94
95
96
{
"name": "my-site-2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development next-remote-watch ./src/pages/posts",
"build": "cross-env NODE_ENV=production next build && npm run build:sitemap-rss",
"build:index": "node ./scripts/generate-post-search-index.js",
"build:sitemap-rss": "node ./scripts/generate-sitemap-and-rss.js",
"start": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint"
},
"devDependencies": {
"@builder.io/partytown": "^0.6.2",
"@bundle-stats/plugin-webpack-filter": "^4.12.0",
"@jsdevtools/rehype-toc": "^3.0.2",
"@mapbox/rehype-prism": "^0.5.0",
"@next/eslint-plugin-next": "^12.0.1",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.2",
"@types/canvas-confetti": "^1.4.2",
"@types/dom-mediacapture-record": "^1.0.13",
"@types/dom-speech-recognition": "^0.0.1",
"@types/node": "^13.7.1",
"@types/prismjs": "^1.16.6",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/webpack-env": "^1.15.3",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"autoprefixer": "^10.4.4",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"globby": "^11.0.1",
"hastscript": "^6.0.0",
"next-remote-watch": "^2.0.0",
"postcss": "^8.4.12",
"postcss-preset-env": "^7.0.1",
"prettier": "^2.2.1",
"rehype-autolink-headings": "^5.0.1",
"rehype-slug": "^4.0.1",
"rss": "^1.2.2",
"simple-functional-loader": "^1.2.1",
"tailwindcss": "^3.3.0",
"typescript": "^4.8.4",
"unist-util-visit": "^2.0.3",
"webpack-stats-plugin": "^1.1.3",
"xml-formatter": "^2.3.0"
},
"dependencies": {
"@codemirror/autocomplete": "^6.6.1",
"@codesandbox/sandpack-react": "^2.6.3",
"@feedback-fish/react": "^1.2.1",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.17",
"@next/bundle-analyzer": "^13.0.1",
"@next/font": "^13.0.1",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-tooltip": "1.0.7",
"@vercel/analytics": "^1.1.1",
"@vercel/og": "0.0.22",
"autotrack": "^2.4.1",
"canvas-confetti": "^1.5.1",
"clipboard-copy": "^4.0.1",
"clsx": "^1.1.1",
"cross-env": "^7.0.3",
"csstype": "2.6.2",
"framer-motion": "^10.12.8",
"goober": "2.0.41",
"lucide-react": "^0.214.0",
"lz-string": "^1.5.0",
"match-sorter": "^6.3.1",
"metadata-scraper": "^0.2.57",
"next": "^13.0.1",
"next-mdx-remote": "^4.1.0",
"prismjs": "1.21.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-flip-toolkit": "^7.0.13",
"react-hot-toast": "^2.1.1",
"react-query": "^3.33.3",
"tailwind-merge": "^2.2.1",
"tinytime": "^0.2.6"
},
"dependenciesComments": {
"goober": "goober is used by react-hot-toast and in parts of the web where using Tailwind require too much customization"
}
}