-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.63 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
{
"name": "mskelton.dev",
"description": "Source code for my personal website.",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "next build",
"db:reindex": "curl -X POST http://localhost:3000/api/reindex",
"db:seed": "tsx scripts/seed.ts",
"dev": "next dev",
"serve": "next start",
"lint": "eslint .",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"test": "playwright test",
"ts": "tsc"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@libsql/client": "^0.8.1",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@mskelton/rehype-callout": "^0.0.4",
"@mskelton/rehype-shiki": "^0.3.0",
"@mskelton/remark-extract-frontmatter": "^0.0.2",
"@next/mdx": "^13.5.6",
"@next/third-parties": "^14.1.0",
"@octokit/rest": "^20.0.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.16",
"clsx": "^2.0.0",
"drizzle-orm": "^0.32.2",
"fast-glob": "^3.3.1",
"feed": "^4.2.2",
"hast-util-has-property": "^2.0.1",
"hast-util-heading-rank": "^2.1.1",
"hast-util-to-text": "^4.0.0",
"next": "^13.5.6",
"next-mdx-remote": "^4.4.1",
"parse-numeric-range": "^1.3.0",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-aria": "^3.31.0",
"react-aria-components": "^1.0.0",
"react-compare-slider": "^2.2.0",
"react-dom": "^18.2.0",
"react-medium-image": "^0.0.5",
"react-stately": "^3.29.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx-frontmatter": "^3.0.0",
"remark-parse": "^10.0.2",
"remark-smartypants": "^2.0.0",
"sharp": "^0.32.6",
"shiki": "1.0.0-beta.2",
"tailwind-merge": "^1.14.0",
"tailwind-variants": "^0.1.20",
"tailwindcss": "^3.4.0",
"unified": "^11.0.3",
"unist-util-visit": "^5.0.0",
"vfile-matter": "^5.0.0",
"webpack": "^5.89.0"
},
"devDependencies": {
"@mskelton/eslint-config": "^9.2.0",
"@octokit/webhooks-types": "^7.3.1",
"@playwright/test": "^1.49.1",
"@types/mdx": "^2.0.11",
"@types/node": "^20.11.19",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"drizzle-kit": "^0.23.2",
"eslint": "^9.13.0",
"expect-axe-playwright": "^4.0.1",
"gray-matter": "^4.0.3",
"lariat": "^2.0.1",
"prettier": "^3.2.5",
"prettier-plugin-css-order": "^2.0.1",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}