-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.51 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
{
"name": "authweb",
"version": "1.2.2",
"private": true,
"type": "module",
"scripts": {
"dev": "nitro dev",
"build": "nitro build",
"start": "wrangler pages dev",
"check": "biome check . --write",
"format": "biome format . --write",
"lint": "biome lint . --write",
"prepare": "nitro prepare",
"cleanup": "pnpm run --stream --parallel --color \"/cleanup:(?!deps)/\"",
"cleanup:dev": "pnpm dlx rimraf .{output,data,nitro,wrangler} _{build,data,dist}",
"cleanup:assets": "pnpm dlx rimraf public/assets/styles.css",
"cleanup:deps": "pnpm dlx rimraf pnpm-lock.yaml node_modules",
"update-deps": "npm-check-updates --configFileName .ncurc.json",
"typecheck": "tsc -b --noEmit",
"wrangler": "wrangler"
},
"dependencies": {
"consola": "^3.2.3",
"h3": "^1.13.0",
"html-minifier": "^4.0.0",
"liquidjs": "^10.18.0",
"ohash": "^1.1.4",
"pathe": "^1.1.2",
"std-env": "^3.8.0",
"ufo": "^1.5.4",
"uqr": "^0.1.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"make-dir": "^5.0.0",
"nitropack": "^2.10.4",
"npm-check-updates": "17.1.10",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"wrangler": "^3.86.0"
},
"packageManager": "[email protected]"
}