-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "cssu",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "yarn lint && yarn add sharp --dev --ignore-engines && next build && next-image-export-optimizer",
"start": "serve -s out",
"clean": "rm -rf .next ./public/build-images ./out",
"lint": "eslint ."
},
"dependencies": {
"next": "14.2.3",
"prettier": "^3.3.3",
"react": "^18",
"react-dom": "^18",
"sharp": "^0.33.4"
},
"devDependencies": {
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"copy-webpack-plugin": "^12.0.2",
"esbuild": "^0.21.1",
"eslint": "^8",
"eslint-config-next": "14.2.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-mdx": "^3.1.5",
"gray-matter": "^4.0.3",
"image-size": "^1.1.1",
"next-image-export-optimizer": "^1.12.3",
"next-mdx-remote": "^4.4.1",
"plaiceholder": "^3.0.0",
"postcss": "^8",
"react-icons": "^5.1.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^4.0.0",
"remark-unwrap-images": "^4.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"resolutions": {
"string-width": "^4.2.3"
}
}