-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.29 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
{
"name": "comp-qwik-smpl",
"description": "A simple Farcaster Frame app built with Qwik",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm build.types && pnpm build.client && pnpm build.static",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adapters/vercel-edge/vite.config.ts",
"build.static": "vite build -c adapters/static/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "vercel deploy",
"dev": "vite --mode ssr",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "^1.12.1",
"@builder.io/qwik-city": "^1.12.1",
"@types/node": "20.14.11",
"prettier": "3.3.3",
"typescript": "5.4.5",
"undici": "^7.5.0",
"vercel": "^29.1.1",
"vite": "5.3.5",
"vite-tsconfig-paths": "^4.2.1"
},
"dependencies": {
"@0x/swap-ts-sdk": "2.1.1",
"@farcaster/frame-host": "^0.0.30",
"@farcaster/frame-sdk": "^0.0.31",
"@types/three": "^0.174.0",
"optional": "^0.1.4",
"sharp": "^0.33.2",
"three": "^0.174.0",
"viem": "^2.24.2"
}
}