-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.25 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
60
61
62
63
64
65
{
"name": "tapw",
"private": true,
"version": "0.0.0",
"author": "David Adamson",
"type": "module",
"scripts": {
"dev": "vite",
"check:types": "vue-tsc --noEmit",
"check:format": "prettier --ignore-path .gitignore --check .",
"check:lint": "eslint",
"test:e2e": "cypress run --browser chrome",
"build": "vite build && esbuild src/main.prod.ts --bundle --minify --sourcemap --platform=node --format=esm --packages=external --outfile=dist/main.js",
"start": "node --enable-source-maps dist/main.js",
"build:vercel": "vite build",
"build:netlify": "vite build && esbuild src/main.prod.netlify.ts --bundle --minify --platform=neutral --outfile=netlify/edge-functions/index.js",
"build:cloudflare": "vite build && esbuild src/main.prod.cloudflare.ts --bundle --minify --platform=neutral --outfile=functions/api/[[catchall]].js",
"build:deno": "vite build && esbuild src/main.prod.deno.ts --bundle --minify --platform=neutral --outfile=dist/main.js"
},
"engines": {
"node": "22.x"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"@ts-rest/core": "^3.51.0",
"@ts-rest/serverless": "^3.51.0",
"hono": "^4.6.15",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.17.0",
"@fontsource-variable/inter": "^5.1.1",
"@fontsource-variable/jetbrains-mono": "^5.1.2",
"@hono/swagger-ui": "^0.5.0",
"@hono/vite-dev-server": "^0.17.0",
"@iconify-icons/uil": "^1.2.3",
"@iconify/vue": "^4.2.0",
"@ts-rest/open-api": "^3.51.0",
"@types/node": "^22.10.3",
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cypress": "^13.17.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"radix-vue": "^1.9.12",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"typescript": "~5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.6",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.0"
}
}