-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.29 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
{
"name": "blog",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next",
"dev:watch": "next-remote-watch ./posts",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "eslint .",
"pages:build": "yarn next-on-pages",
"preview": "yarn pages:build && wrangler pages dev .vercel/output/static --compatibility-flags nodejs_compat",
"deploy": "yarn pages:build && wrangler pages deploy .vercel/output/static --compatibility-flags nodejs_compat"
},
"dependencies": {
"@babel/generator": "^7.17.10",
"@babel/parser": "^7.17.10",
"@babel/traverse": "^7.17.10",
"@babel/types": "^7.17.10",
"@mapbox/rehype-prism": "^0.8.0",
"@mdx-js/loader": "^2.2.1",
"@next/mdx": "^13.1.1",
"@nullptrs/feed": "^4.2.2",
"axios": "^0.26.1",
"bright": "^0.8.4",
"common-tags": "^1.8.2",
"cookie": "^0.4.2",
"dayjs": "^1.11.0",
"envsafe": "^2.0.3",
"geist": "^1.2.0",
"glob": "^8.0.3",
"globby": "14",
"gray-matter": "^4.0.3",
"jsonwebtoken": "^8.5.1",
"next": "latest",
"next-mdx-remote": "^4.4.1",
"react": "latest",
"react-dom": "latest",
"rehype-trest-sitter": "^0.1.0",
"remark-gfm": "^3.0.1",
"remark-images": "^3.1.0",
"sharp": "^0.30.7",
"urlcat": "^2.0.4"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.6",
"@cloudflare/workers-types": "^4.20241127.0",
"@tailwindcss/typography": "^0.5.2",
"@types/babel__generator": "^7",
"@types/babel__traverse": "^7",
"@types/common-tags": "^1.8.1",
"@types/cookie": "^0.4.1",
"@types/glob": "^8",
"@types/jsonwebtoken": "^8.5.8",
"@types/mapbox__rehype-prism": "^0",
"@types/react": "^17.0.43",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/sharp": "^0",
"@types/tailwindcss": "^3.0.10",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"autoprefixer": "^10.4.4",
"const-module-loader": "^0.1.1",
"discord-api-types": "^0.30.0",
"eslint": "^8.12.0",
"eslint-config-next": "latest",
"eslint-config-xo": "^0.40.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-config-xo-typescript": "^0.50.0",
"eslint-plugin-next-on-pages": "^1.10.0",
"next-remote-watch": "^2.0.0",
"postcss": "^8.4.12",
"prettier": "^2.6.1",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3",
"wrangler": "^3.91.0"
}
}