-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.04 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
{
"name": "zalgo-official.com",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "node scripts/copyImages.mjs",
"dev": "next dev",
"prebuild": "node scripts/copyImages.mjs",
"build": "next build",
"postbuild": "next-sitemap --config sitemap.config.mjs",
"lint": "next lint",
"lint:fix": "next lint --fix",
"start": "next start",
"format": "prettier --write --ignore-path .gitignore \"./**/*.{js,jsx,ts,tsx,json}\" && markdownlint-cli2 \"posts/**/post.md\"",
"test": "jest --watch",
"test:ci": "jest"
},
"dependencies": {
"@next/env": "^14.0.0",
"@next/third-parties": "^14.2.4",
"@types/async-retry": "^1.4.5",
"@types/jest": "^29.4.0",
"@types/mapbox__rehype-prism": "^0.8.0",
"@types/node": "^22.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"async-retry": "^1.3.3",
"date-fns": "^4.0.0",
"date-fns-tz": "^3.1.3",
"gray-matter": "^4.0.3",
"moment": "^2.29.4",
"next": "14.2.20",
"next-mdx-remote": "^5.0.0",
"next-sitemap": "^4.0.0",
"node-fetch": "^3.3.0",
"prism-themes": "^1.9.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.0.0",
"rehype-katex": "^7.0.0",
"rehype-pretty-code": "^0.14.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"server-only": "^0.0.1",
"sharp": "^0.33.0",
"shiki": "^1.10.0",
"typescript": "^5.0.0",
"unist-util-is": "^6.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"jest": "^29.5.0",
"markdownlint-cli2": "^0.16.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-patch": "^3.0.0"
}
}