-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
115 lines (115 loc) · 3.82 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
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
110
111
112
113
114
115
{
"name": "help.mirrorz.org",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/mirrorz-org/mirrorz-help.git"
},
"main": "index.js",
"files": [
"src/compiled"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"og:build": "node -r @swc-node/register ./scripts/generate-opengraph.ts",
"og:clean": "rimraf ./public/og-help.mirrorz.org",
"cache_clean:og": "rimraf ./node_modules/.cache/mirrorz-help-open-graph-cache",
"cache_clean:mdx": "rimraf ./node_modules/.cache/mirrorz-help-mdx-cache",
"cache_clean:all": "rimraf ./node_modules/.cache",
"start": "next start",
"lint": "eslint --format=sukka .",
"export": "next export",
"ncc-compiled": "taskr ncc"
},
"license": "MIT",
"taskr": {
"requires": [
"./taskfile-plugins.js"
]
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@sukka/listdir": "^0.2.0",
"body-scroll-lock": "^4.0.0-beta.0",
"clsx": "^2.0.0",
"command-score": "^0.1.2",
"express": "^4.18.2",
"foxact": "^0.2.26",
"hast-util-to-jsx-runtime": "^2.2.0",
"highlight.js": "^11.9.0",
"lowlight": "^3.1.0",
"next": "^14.0.2",
"react": "^18.3.0-canary-6b3834a45-20231110",
"react-dom": "^18.3.0-canary-6b3834a45-20231110",
"rehype-external-links": "^3.0.0",
"style9": "^0.18.2",
"swr": "^2.2.4"
},
"devDependencies": {
"@eslint-sukka/node": "^4.1.7",
"@eslint-sukka/react": "^4.1.7",
"@eslint-sukka/ts": "^4.1.7",
"@mdx-js/mdx": "^3.0.0",
"@next/bundle-analyzer": "^14.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@resvg/resvg-js": "^2.6.0",
"@swc-node/register": "^1.6.8",
"@swc/core": "^1.3.96",
"@taskr/clear": "^1.1.0",
"@taskr/esnext": "^1.1.0",
"@types/body-scroll-lock": "^3.1.2",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@vercel/ncc": "^0.38.1",
"chokidar": "^3.5.3",
"critters": "^0.0.20",
"eslint": "^8.53.0",
"eslint-config-next": "^14.0.2",
"eslint-config-sukka": "^4.1.7",
"eslint-formatter-sukka": "^4.1.7",
"eslint-plugin-mdx": "^2.2.0",
"find-up": "5.0.0",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"mdast-util-to-string": "^4.0.0",
"metro-cache": "^0.80.1",
"remark-gfm": "^4.0.0",
"remark-unwrap-images": "^4.0.0",
"resolve": "^1.22.8",
"rimraf": "^5.0.5",
"sass": "^1.69.5",
"satori": "^0.1.2",
"style9-webpack": "^0.5.2",
"taskr": "^1.1.0",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0"
},
"engines": {
"node": ">=16"
},
"overrides": {
"react": "$react",
"react-dom": "$react-dom",
"eslint-plugin-import": "npm:eslint-plugin-i@latest",
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"deep-equal": "npm:@nolyfill/deep-equal@latest",
"function-bind": "npm:@nolyfill/function-bind@latest",
"has": "npm:@nolyfill/has@latest",
"has-symbols": "npm:@nolyfill/has-symbols@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@latest",
"has-proto": "npm:@nolyfill/has-proto@latest",
"side-channel": "npm:@nolyfill/side-channel@latest"
}
}