This repository was archived by the owner on Apr 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.03 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.03 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
{
"name": "croissant-pages",
"version": "1.0.1",
"description": "template",
"main": "server/serve.js",
"scripts": {
"dev": "next dev --port=8580 --turbopack",
"build": "next build",
"start": "next start --port=8580",
"test": "react-scripts test --env=jsdom",
"lint": "next lint",
"eject": "react-scripts eject",
"serve": "nodemon .\\dist\\server\\serve.js",
"publish": "git add . && git commit -m \"update\" && git push",
"pretty": "npx prettier --write --config .\\prettier.json .\\pages .\\components .\\hooks .\\styles .\\next.config.js .\\package.json .\\tsconfig.json .\\postcss.config.js .\\tailwind.config.js",
"build-serve": "npm run build && npm run serve",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"cf-typegen": "wrangler types --env-interface CloudflareEnv ./cloudflare-env.d.ts",
"upload-to-r2": "node scripts/upload-to-r2.mjs",
"upload-to-r2-wrangler": "node scripts/upload-to-r2-wrangler.mjs",
"upload-to-r2-robust": "node scripts/upload-to-r2-robust.mjs",
"upload-to-r2-fast": "node scripts/upload-to-r2-fast.mjs"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.914.0",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"@fortawesome/react-fontawesome": "^0.2.3",
"@opennextjs/cloudflare": "^1.11.0",
"@simplewebauthn/server": "^13.1.2",
"@tailwindcss/postcss": "^4.1.13",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"croissant-pages": "file:",
"crypto": "^1.0.1",
"crypto-browserify": "^3.12.1",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"formidable": "^3.5.4",
"github-markdown-css": "^5.8.1",
"googleapis": "^153.0.0",
"iron-session": "^8.0.4",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.2",
"next": "^15.4.1",
"next-i18next": "^15.4.2",
"node-fetch": "^2.7.0",
"react": "^19.1.0",
"react-code-blocks": "^0.1.6",
"react-dom": "^19.1.0",
"react-highlight": "^0.15.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.5.3",
"react-scripts": "^0.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"socket.io-client": "^4.8.1",
"stream-browserify": "^3.0.0",
"swagger-ui-react": "^5.29.3"
},
"author": "fox3000foxy",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/multer": "^1.4.12",
"@types/next": "^9.0.0",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"@types/react-highlight": "^0.12.8",
"autoprefixer": "^10.4.21",
"cross-env": "^10.0.0",
"eslint": "^8.57.1",
"globals": "^16.3.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript-eslint": "^8.38.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}