-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.12 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.12 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "plotlink-ows",
"version": "1.0.25",
"bin": {
"plotlink-ows": "./bin/plotlink-ows.js"
},
"files": [
"bin/",
"app/",
"lib/ows/",
"packages/",
"public/",
"scripts/"
],
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"app:dev": "concurrently \"tsx watch app/server.ts\" \"vite --config app/vite.config.ts\"",
"app:build": "vite build --config app/vite.config.ts",
"app:start": "tsx app/server.ts",
"prepublishOnly": "npm run app:build",
"postinstall": "prisma generate --schema app/prisma/schema.prisma",
"prisma:local": "prisma generate --schema app/prisma/schema.prisma && prisma db push --schema app/prisma/schema.prisma",
"release:patch": "npm version patch && git push origin main --follow-tags && VERSION=$(node -p 'require(\"./package.json\").version') && gh release create \"v$VERSION\" --generate-notes --latest && npm publish",
"release:minor": "npm version minor && git push origin main --follow-tags && VERSION=$(node -p 'require(\"./package.json\").version') && gh release create \"v$VERSION\" --generate-notes --latest && npm publish",
"release:major": "npm version major && git push origin main --follow-tags && VERSION=$(node -p 'require(\"./package.json\").version') && gh release create \"v$VERSION\" --generate-notes --latest && npm publish"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1009.0",
"@hono/node-server": "^1.19.12",
"@open-wallet-standard/core": "^1.2.4",
"@prisma/client": "^6.19.3",
"@supabase/supabase-js": "^2.99.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/xterm": "^6.0.0",
"dotenv": "^17.4.0",
"hono": "^4.12.10",
"node-pty": "^1.2.0-beta.12",
"prisma": "^6.19.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"viem": "^2.47.2",
"vite": "^6.4.1",
"ws": "^8.20.0"
},
"devDependencies": {
"@farcaster/miniapp-node": "^0.1.13",
"@farcaster/miniapp-sdk": "^0.3.0",
"@farcaster/miniapp-wagmi-connector": "^2.0.0",
"@playwright/test": "^1.58.2",
"@rainbow-me/rainbowkit": "^2.2.10",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-query": "^5.90.21",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ws": "^8.18.1",
"@vercel/analytics": "^2.0.1",
"@vitejs/plugin-react": "^4.7.0",
"concurrently": "^9.2.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"jsdom": "^27.0.1",
"next": "16.1.6",
"ox": "^0.14.8",
"typescript": "^5",
"vitest": "^3.2.4",
"wagmi": "^2.19.5"
}
}