-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.46 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
{
"name": "genoma-games-website",
"version": "0.0.0",
"private": true,
"description": "Genoma Games' website",
"author": "Alberto Fernandez <[email protected]> (http://onlythepixel.com)",
"scripts": {
"build": "next build && next-sitemap",
"lint": "next lint && npm run typecheck",
"lint:fix": "next lint --fix && npm run typecheck",
"prestart:prod": "npm run build",
"start:prod": "http-server ./out",
"start": "next dev",
"test": "npm run lint && npm run build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.5.2",
"@fortawesome/free-brands-svg-icons": "6.5.2",
"@fortawesome/free-solid-svg-icons": "6.5.2",
"@fortawesome/react-fontawesome": "0.2.2",
"classnames": "2.5.1",
"date-fns": "3.6.0",
"disqus-react": "1.1.5",
"flag-icons": "7.2.3",
"globby": "14.0.1",
"gray-matter": "4.0.3",
"highlight.js": "11.9.0",
"mdast-util-to-string": "4.0.0",
"next": "14.2.4",
"next-intl": "3.15.3",
"next-sitemap": "4.2.3",
"prism-themes": "1.9.0",
"prismjs": "1.29.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-markdown": "9.0.1",
"rehype": "13.0.1",
"rehype-autolink-headings": "7.1.0",
"rehype-external-links": "3.0.0",
"rehype-highlight": "7.0.0",
"rehype-pretty-code": "0.13.2",
"rehype-prism-plus": "2.0.0",
"rehype-raw": "7.0.0",
"rehype-slug": "6.0.0",
"rehype-stringify": "10.0.0",
"remark": "15.0.1",
"remark-emoji": "5.0.0",
"remark-gfm": "4.0.0",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.0",
"remark-squeeze-paragraphs": "6.0.0",
"remark-unwrap-images": "4.0.0",
"sharp": "0.33.4",
"shiki": "1.10.0",
"strip-markdown": "6.0.0",
"unified": "11.0.5",
"unist-util-remove": "4.0.0",
"unist-util-visit": "5.0.0"
},
"devDependencies": {
"@types/hast": "3.0.4",
"@types/mdast": "4.0.4",
"@types/node": "20.14.9",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/unist": "3.0.2",
"autoprefixer": "10.4.19",
"cssnano": "7.0.3",
"eslint": "8.53.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-simple-import-sort": "12.1.0",
"http-server": "14.1.1",
"postcss": "8.4.38",
"postcss-import": "16.1.0",
"prettier": "3.3.2",
"prettier-plugin-tailwindcss": "0.6.5",
"tailwindcss": "3.4.4",
"typescript": "5.5.2"
}
}