-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.03 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
{
"name": "sourcepay",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1",
"server": "node server/index.mjs",
"start": "node server/index.mjs",
"build": "tsc --noEmit && vite build",
"test": "node --test tests/*.test.mjs",
"deploy:fly": "flyctl deploy --smoke-checks=false",
"preview": "vite preview --host 127.0.0.1"
},
"dependencies": {
"@circle-fin/x402-batching": "^3.2.0",
"@walletconnect/ethereum-provider": "^2.23.10",
"@x402/core": "^2.16.0",
"@x402/evm": "^2.16.0",
"lucide-react": "^0.468.0",
"openai": "^7.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"viem": "^2.53.1"
},
"devDependencies": {
"@types/node": "^22.20.0",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.5.2",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^8.1.0"
},
"overrides": {
"ws": "^8.21.0"
}
}