-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 1.85 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
{
"name": "kaihao.dev",
"type": "module",
"private": true,
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"scripts": {
"dev": "HOST=http://127.0.0.1:3000 next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"test": "playwright test -c src/tests/playwright.config.ts",
"test:docker": "docker run --rm -e HOST=http://host.docker.internal:3000 -v $(pwd):/work/ -w /work/ mcr.microsoft.com/playwright:v1.37.0 npm test"
},
"dependencies": {
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.4.12",
"@vercel/og": "^0.2.0",
"classnames": "^2.3.2",
"next": "13.4.12",
"polished": "^4.2.2",
"prism-themes": "^1.9.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"remark-frontmatter": "^4.0.1",
"remark-mdx-images": "^2.0.0",
"server-only": "^0.0.1",
"sharp": "^0.32.4",
"slugify": "^1.6.5"
},
"devDependencies": {
"@playwright/test": "^1.37.0",
"@types/hast": "^2.3.4",
"@types/mdast": "^3.0.10",
"@types/mdx": "^2.0.5",
"@types/node": "18.14.2",
"@types/prismjs": "^1.26.0",
"@types/react": "18.0.28",
"@types/react-dom": "^18.0.11",
"@types/rss": "^0.0.30",
"@types/unist": "^2.0.6",
"autoprefixer": "^10.4.14",
"eslint": "8.35.0",
"eslint-config-next": "13.4.12",
"grapheme-splitter": "^1.0.4",
"mdast-util-mdx": "^2.0.1",
"postcss": "^8.4.27",
"prettier": "3.0.1",
"prettier-plugin-tailwind": "^2.2.12",
"prismjs": "^1.29.0",
"remark-codesandbox": "^0.10.1",
"remark-gfm": "^3.0.1",
"remark-mdx-frontmatter": "^2.1.1",
"rss": "^1.2.2",
"string-width": "^5.1.2",
"tailwindcss": "^3.3.3",
"tsx": "^3.12.3",
"typescript": "4.9.5",
"unist-util-visit": "4.1.2"
},
"prettier": {
"singleQuote": true
}
}