-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.92 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.92 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
{
"name": "everywhere",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"set:tb": "pnpm config set registry https://registry.npmmirror.com",
"set:default": "pnpm config set registry https://registry.npmjs.org",
"pnpm:in": "npm install -g pnpm@9 && pnpm -v",
"pnpm:un": "npm uninstall -g pnpm",
"dev": "next dev",
"build": "next build && node scripts/copy-static.js",
"build:exe": "bun build --compile --target=bun-windows-x64 start.js --outfile .next/standalone/everywhere",
"start": "next start",
"go": "node .next/standalone/server.js",
"check": "tsc --noEmit",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "1.1.0",
"autoprefixer": "10.4.24",
"axios": "1.13.5",
"cheerio": "1.0.0-rc.12",
"crypto-js": "^4.2.0",
"eslint-config-next": "15.5.12",
"global": "^4.4.0",
"i18next": "^25.8.13",
"mime-types": "3.0.2",
"next": "15.5.12",
"next-runtime-env": "^3.3.0",
"node-cache": "5.1.2",
"postcss": "8.5.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^16.5.4",
"react-markdown": "10.1.0",
"rehype-highlight": "7.0.2",
"rehype-raw": "7.0.0",
"remark-gfm": "4.0.1",
"server-only": "^0.0.1",
"sharp": "0.34.5",
"tailwindcss": "3.4.1",
"trash": "^10.1.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.1.6",
"@tailwindcss/typography": "0.5.19",
"@types/cheerio": "0.22.35",
"@types/mime-types": "3.0.1",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"highlight.js": "11.11.1",
"typescript": "5.6.3"
},
"overrides": {
"glob": "10.4.6",
"minimatch": "10.2.1"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"next-runtime-env": {
"next": "^14 || ^15 || ^16"
}
}
}
},
"engines": {
"pnpm": "^9.0.0",
"node": ">=24.0.0"
}
}