-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.06 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.06 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
{
"name": "webfont",
"private": true,
"version": "1.6.0",
"type": "module",
"scripts": {
"dev": "pnpx tsx scripts/dev-all.ts",
"dev:frontend": "vite",
"dev:backend": "pnpx tsx backend/app.ts",
"build": "vite build",
"build_backend": "pnpx tsx scripts/build-backend.ts",
"docker_build": "docker build -t llej0/web-font:${npm_package_version} -t llej0/web-font:latest .",
"docker_push": "docker push llej0/web-font:${npm_package_version} && docker push llej0/web-font:latest",
"preview": "vite preview",
"release": "pnpm build && pnpm build_backend && pnpm docker_build && pnpm docker_push"
},
"dependencies": {
"solid-js": "^1.9.12",
"web-streams-polyfill": "^4.2.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@xmldom/xmldom": "^0.9.9",
"jsdom": "^29.0.2",
"pngjs": "^7.0.0",
"puppeteer": "^24.40.0",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"undici": "^8.0.2",
"vite": "^8.0.7",
"vite-plugin-pilot": "^1.0.19",
"vite-plugin-solid": "^2.11.12",
"vitest": "^4.1.3"
}
}