This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.67 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": "next-jade",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pages:dev": "exec wrangler pages dev .vercel/output/static",
"pages:build": "exec next-on-pages",
"pages:deploy": "exec wrangler pages deploy .vercel/output/static",
"pages:cf": "npm run pages:build && npm run pages:deploy"
},
"dependencies": {
"@cloudflare/next-on-pages": "^1.12.1",
"@cloudflare/workers-types": "^4.20240712.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.5",
"@types/mdx": "^2.0.13",
"babel-plugin-react-compiler": "0.0.0-experimental-592953e-20240517",
"cheerio": "1.0.0-rc.12",
"clsx": "^2.1.1",
"eslint-plugin-react-compiler": "0.0.0-experimental-c8b3f72-20240517",
"gray-matter": "^4.0.3",
"html-react-parser": "^5.1.10",
"next": "canary",
"next-mdx-remote": "^5.0.0",
"react": "rc",
"react-dom": "rc",
"sanitize-html": "^2.13.0",
"wrangler": "^3.64.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/sanitize-html": "^2.11.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"eslint-plugin-next-on-pages": "^1.12.1",
"postcss": "^8.4.39",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"webpack": "^5.93.0"
}
}