-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.12 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
{
"name": "remix-blog-template",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:posts": "npx ts-node scripts/cachePosts.ts",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:posts": "npx ts-node scripts/cachePosts.ts watch",
"dev:remix": "remix dev",
"postinstall": "npm run build:posts && remix setup node"
},
"dependencies": {
"@octokit/plugin-throttling": "^5.0.1",
"@octokit/rest": "^19.0.7",
"@remix-run/node": "^1.15.0",
"@remix-run/react": "^1.15.0",
"@remix-run/v1-route-convention": "^0.1.1",
"@remix-run/vercel": "^1.15.0",
"@vercel/node": "^2.10.2",
"@vercel/remix": "^1.15.0",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"front-matter": "^4.0.2",
"inflected": "^2.1.0",
"isbot": "^3.6.8",
"mdx-bundler": "^9.2.1",
"p-queue": "^7.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reading-time": "^1.5.0",
"remix": "^1.15.0",
"remix-seo": "^0.1.0",
"remix-utils": "^6.1.0",
"spin-delay": "^1.2.0",
"tiny-invariant": "^1.3.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@remix-run/dev": "^1.15.0",
"@remix-run/eslint-config": "^1.15.0",
"@remix-run/serve": "^1.15.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"eslint": "^8.37.0",
"npm-run-all": "^4.1.5",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.2.0",
"rehype-document": "^6.1.0",
"rehype-format": "^4.0.1",
"rehype-highlight": "^6.0.0",
"rehype-parse": "^8.0.4",
"rehype-prism-plus": "^1.5.1",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^3.0.1",
"remark-mdx-frontmatter": "^2.1.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-toc": "^8.0.1",
"rimraf": "^4.4.1",
"tailwindcss": "^3.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"engines": {
"node": ">=18"
}
}