-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.77 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
{
"name": "mitchellsimoens-blog",
"version": "0.3.0",
"license": "ISC",
"scripts": {
"dev": "next dev",
"build": "next build",
"build-prod": "NODE_ENV=production run-s clean build redirects:gen sitemap:gen headers:copy export",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"clean": "rimraf .next out",
"lint": "next lint",
"build-types": "tsc --noEmit --pretty",
"prepare": "husky install",
"headers:copy": "cp _headers public/_headers",
"redirects:gen": "node gen-redirects.js",
"sitemap:gen": "next-sitemap"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.4.2",
"@fortawesome/free-brands-svg-icons": "6.4.2",
"@fortawesome/free-solid-svg-icons": "6.4.2",
"@fortawesome/react-fontawesome": "0.2.0",
"@mdx-js/loader": "2.3.0",
"@mdx-js/react": "2.3.0",
"@next/mdx": "13.4.13",
"@nextui-org/react": "2.0.16",
"chart.js": "4.3.3",
"classnames": "2.3.2",
"date-fns": "2.30.0",
"framer-motion": "10.15.1",
"gray-matter": "4.0.3",
"mermaid": "10.3.0",
"next": "13.4.13",
"next-seo": "6.1.0",
"next-themes": "0.2.1",
"prismjs": "1.29.0",
"react": "18.2.0",
"react-chartjs-2": "5.2.0",
"react-dom": "18.2.0",
"react-twitter-embed": "4.0.4",
"remark-emoji": "3.1.2",
"remark-images": "3.1.0",
"styled-jsx-plugin-postcss": "4.0.1"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20230807.0",
"@next/bundle-analyzer": "13.4.13",
"@types/mime": "3.0.1",
"@types/node": "20.4.8",
"@types/react": "18.2.19",
"@types/remark-prism": "1.3.4",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"autoprefixer": "10.4.14",
"cross-env": "7.0.3",
"cssnano": "6.0.1",
"eslint": "8.46.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-next": "13.4.13",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.33.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unused-imports": "3.0.0",
"globby": "13.2.2",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"mime": "3.0.0",
"next-sitemap": "4.1.8",
"npm-run-all": "4.1.5",
"postcss": "8.4.27",
"prettier": "3.0.1",
"prettier-plugin-tailwindcss": "0.4.1",
"reading-time": "1.5.0",
"remark": "14.0.3",
"remark-html": "15.0.2",
"remark-oembed": "1.2.2",
"remark-prism": "1.3.6",
"rimraf": "5.0.1",
"strip-markdown": "5.0.1",
"tailwindcss": "3.3.3",
"typescript": "5.1.6",
"unist-util-visit": "5.0.0"
}
}