-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.97 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.97 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "chris.lu",
"description": "source code for my blog (chris.lu)",
"scripts": {
"dev": "next dev --webpack",
"dev-ssl": "next dev --webpack --experimental-https",
"build": "npm run lint && next build --webpack",
"build-debug": "next build --debug --webpack",
"start": "next start",
"next-lint": "next lint",
"lint": "eslint --cache --cache-location .next/cache/eslint/",
"lint-nocache": "eslint",
"lint-debug": "eslint --debug",
"lint-debug-config": "eslint --debug eslint.config.mjs",
"lint-print-config": "eslint --print-config eslint.config.mjs",
"lint-inspect-config": "eslint --inspect-config eslint.config.mjs",
"lint-fix": "eslint --fix",
"info": "next info",
"check-urls": "remark --rc-path .no-dead-urls.remarkrc.mjs -e .mdx ./app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisweb/chris.lu.git"
},
"keywords": [
"chris.lu",
"blog",
"chrisweb",
"webdev",
"tutorial"
],
"author": "github.com/chrisweb",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisweb/chris.lu/issues"
},
"homepage": "https://github.com/chrisweb/chris.lu#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "7.1.0",
"@fortawesome/free-brands-svg-icons": "7.1.0",
"@fortawesome/free-solid-svg-icons": "7.1.0",
"@fortawesome/react-fontawesome": "3.1.1",
"@mdx-js/loader": "3.1.1",
"@next/mdx": "16.0.10",
"@react-three/drei": "10.7.7",
"@react-three/fiber": "9.4.2",
"@react-three/postprocessing": "3.0.4",
"@sentry/nextjs": "10.32.0",
"@shikijs/transformers": "3.20.0",
"@vercel/analytics": "1.6.1",
"@vercel/speed-insights": "1.3.1",
"glob": "13.0.0",
"hast-util-from-html-isomorphic": "2.0.0",
"next": "16.0.10",
"postprocessing": "6.38.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-swipeable": "7.0.2",
"rehype-autolink-headings": "7.1.0",
"rehype-github-alerts": "4.2.0",
"rehype-mdx-import-media": "1.2.0",
"rehype-pretty-code": "0.14.1",
"rehype-slug": "6.0.0",
"remark-frontmatter": "5.0.0",
"remark-gfm": "4.0.1",
"remark-mdx-frontmatter": "5.2.0",
"remark-table-of-contents": "2.1.0",
"shiki": "3.20.0",
"simplex-noise": "4.0.3",
"three": "0.181.2",
"vfile-matter": "5.0.1",
"waveform-visualizer": "4.2.0",
"web-audio-api-player": "5.3.2"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@next/bundle-analyzer": "16.0.10",
"@next/eslint-plugin-next": "16.0.10",
"@react-three/eslint-plugin": "0.1.2",
"@stylistic/eslint-plugin": "5.6.1",
"@types/eslint-plugin-jsx-a11y": "6.10.1",
"@types/node": "25.0.3",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "9.39.2",
"eslint-config-next": "16.0.10",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-mdx": "3.6.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"eslint-plugin-react-hooks": "7.0.1",
"globals": "16.5.0",
"jiti": "2.6.1",
"remark-cli": "12.0.1",
"remark-lint-no-dead-urls": "2.0.1",
"remark-preset-lint-consistent": "6.0.1",
"remark-preset-lint-markdown-style-guide": "6.0.1",
"remark-preset-lint-recommended": "7.0.1",
"typescript": "5.9.3",
"typescript-eslint": "8.50.0"
},
"browserslist": [
">0.1%, not dead, not Opera < 100, not op_mini all, not and_uc < 15, not samsung < 21, not android > 0, not and_ff < 117, not and_qq < 13, not ie <= 11"
],
"engines": {
"node": ">=20.11.0"
}
}