-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.04 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 4.04 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "plotlink-ows",
"version": "1.2.100",
"packageManager": "npm@10.9.8",
"engines": {
"node": "20.x",
"npm": "10.x"
},
"bin": {
"plotlink-ows": "bin/plotlink-ows.js"
},
"files": [
"bin/",
"app/",
"lib/ows/",
"lib/genres.ts",
"packages/",
"public/",
"scripts/",
"!**/*.test.ts",
"!**/*.test.tsx",
"!**/*.test.js",
"!**/*.test.jsx",
"!**/*.test.mjs",
"!**/*.spec.ts",
"!**/*.spec.tsx",
"!**/*.spec.js",
"!**/__tests__/**",
"!**/node_modules/**",
"!**/*.tgz",
"!**/.next/cache/**",
"!**/.turbo/**",
"!**/.vite/**",
"!**/.cache/**",
"!**/*.tsbuildinfo",
"!**/coverage/**",
"!**/.nyc_output/**",
"!**/__fixtures__/**",
"!**/fixtures/**",
"!**/*.fixture.*",
"!**/*.snap",
"!**/screenshot-*",
"!**/screenshots/**",
"!**/e2e-verify.*",
"!**/tmp/**",
"!**/temp/**",
"!**/*.log",
"!**/*.tmp",
"!**/*.bak",
"!**/*.swp"
],
"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",
"preflight": "node scripts/preflight.mjs",
"smoke:start": "node scripts/start-smoke.mjs",
"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",
"prisma:sql": "node scripts/gen-schema-sql.mjs",
"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": {
"@hono/node-server": "^1.19.14",
"@open-wallet-standard/core": "^1.2.4",
"@prisma/client": "^6.19.3",
"@supabase/supabase-js": "^2.99.1",
"dotenv": "^17.4.0",
"hono": "^4.12.23",
"node-pty": "^1.2.0-beta.12",
"prisma": "^6.19.3",
"tsx": "^4.21.0",
"viem": "^2.47.2",
"ws": "^8.20.1"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.1009.0",
"@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",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/xterm": "^6.0.0",
"concurrently": "^9.2.1",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"jsdom": "^27.0.1",
"next": "16.2.6",
"ox": "^0.14.8",
"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",
"typescript": "^5",
"vite": "^6.4.3",
"vitest": "^3.2.4",
"wagmi": "^2.19.5"
}
}