-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.75 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.75 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
{
"name": "aibtcdev-landing-page",
"private": true,
"version": "1.45.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "npm run wrangler -- deploy",
"deploy:dry-run": "npm run wrangler -- deploy --dry-run",
"wrangler": "set -a && . ./.env && set +a && npx wrangler",
"cf-typegen": "npm run wrangler -- types --env-interface CloudflareEnv cloudflare-env.d.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"postinstall": "patch-package"
},
"dependencies": {
"@aibtc/tx-schemas": "^1.1.0",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@opennextjs/cloudflare": "^1.17.1",
"@scure/base": "^2.0.0",
"@scure/btc-signer": "^2.0.1",
"@stacks/common": "^7.3.1",
"@stacks/encryption": "^7.3.1",
"@stacks/transactions": "^7.3.1",
"date-fns": "^4.1.0",
"next": "^15.5.15",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"swr": "^2.4.0",
"x402-stacks": "^2.0.1"
},
"overrides": {
"undici": ">=7.24.0",
"flatted": ">=3.4.0",
"picomatch": ">=4.0.4",
"path-to-regexp": ">=8.4.0",
"axios": ">=1.15.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260212.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^15.1.3",
"patch-package": "^8.0.1",
"tailwindcss": "^4.1.18",
"typescript": "^5",
"vitest": "^4.0.18",
"wrangler": "^4.65.0"
}
}