-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
59 lines (59 loc) · 1.96 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
{
"name": "florians-site",
"version": "1.0.0",
"private": true,
"scripts": {
"--- For development ------------------------": "",
"dev": "pnpm compile && vite",
"dev:vercel": "pnpm compile && vercel dev",
"start": "pnpm build && vite preview",
"--- For production -------------------------": "",
"vercel-build": "pnpm compile && pnpm build:og && vite build",
"--- Single commands ------------------------": "",
"clean": "rm -rf dist && rm -rf node_modules && rm -rf .vite",
"build:og": "node ./build/generateOpengraph.js",
"build:sitemap": "node ./build/generateSitemap.js",
"compile": "paraglide-js compile --project ./lang/project.inlang --outdir ./lang/paraglide",
"--- Not in use, but necessary to include ---": "",
"build": "pnpm compile && pnpm build:og && pnpm build:sitemap && vite build",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@egjs/flicking-plugins": "^4.7.1",
"@egjs/preact-flicking": "^4.11.0",
"@inlang/paraglide-js": "1.0.0-prerelease.22",
"@preact/preset-vite": "^2.3.0",
"@types/compression": "^1.7.3",
"@types/express": "^4.17.17",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vercel/analytics": "^1.1.1",
"@vercel/node": "^3.0.7",
"cross-fetch": "^4.0.0",
"firebase": "^10.5.0",
"highlight.js": "^11.9.0",
"marked": "^9.0.3",
"node-fetch": "^3.3.2",
"openai": "^4.32.1",
"preact": "^10.10.0",
"preact-render-to-string": "^5.2.1",
"pureimage": "^0.4.13",
"signature_pad": "^4.1.6",
"typescript": "^5.2.2",
"vike": "^0.4.144",
"vite": "^4.0.3"
},
"devDependencies": {
"@inlang/cli": "^2.14.0",
"autoprefixer": "^10.4.15",
"postcss": "^8.4.29",
"tailwindcss": "^3.3.3"
},
"type": "module",
"engines": {
"node": ">=18"
}
}