-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.57 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.57 KB
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
83
84
{
"name": "genoma-games-website",
"version": "0.0.0",
"private": true,
"description": "Genoma Games' website",
"author": "Alberto Fernandez <albertofdzm@gmail.com> (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.7.2",
"@fortawesome/free-brands-svg-icons": "6.7.2",
"@fortawesome/free-solid-svg-icons": "6.7.2",
"@fortawesome/react-fontawesome": "0.2.2",
"classnames": "2.5.1",
"date-fns": "4.1.0",
"disqus-react": "1.1.6",
"flag-icons": "7.3.2",
"globby": "14.1.0",
"gray-matter": "4.0.3",
"highlight.js": "11.11.1",
"mdast-util-to-string": "4.0.0",
"next": "15.3.1",
"next-intl": "4.0.2",
"next-sitemap": "4.2.3",
"prism-themes": "1.9.0",
"prismjs": "1.30.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"rehype": "13.0.2",
"rehype-autolink-headings": "7.1.0",
"rehype-external-links": "3.0.0",
"rehype-highlight": "7.0.2",
"rehype-pretty-code": "0.14.1",
"rehype-prism-plus": "2.0.1",
"rehype-raw": "7.0.0",
"rehype-slug": "6.0.0",
"rehype-stringify": "10.0.1",
"remark": "15.0.1",
"remark-emoji": "5.0.1",
"remark-gfm": "4.0.1",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.2",
"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": {
"@tailwindcss/postcss": "4.1.4",
"@types/hast": "3.0.4",
"@types/mdast": "4.0.4",
"@types/node": "20.14.9",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"@types/unist": "3.0.3",
"cssnano": "7.0.6",
"eslint": "9.25.1",
"eslint-config-next": "15.3.1",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-simple-import-sort": "12.1.1",
"http-server": "14.1.1",
"postcss": "8.5.3",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwindcss": "4.1.4",
"typescript": "5.8.3"
},
"overrides": {
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2"
}
}