-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.48 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.48 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
{
"name": "x402-upload",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev --turbo",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"check": "pnpm lint && tsc --noEmit",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"db:push": "dotenv -e .env.local -- prisma db push",
"db:generate": "dotenv -e .env.local -- prisma migrate dev",
"db:studio": "dotenv -e .env.local -- prisma studio",
"postinstall": "prisma generate",
"cf:update": "aws cloudfront update-function --name upload-auth --function-code fileb://infra/upload-auth.js --function-config '{\"Comment\":\"Validates HMAC upload tokens on PUT\",\"Runtime\":\"cloudfront-js-2.0\"}' --if-match $(aws cloudfront describe-function --name upload-auth --query 'ETag' --output text)",
"cf:publish": "aws cloudfront publish-function --name upload-auth --if-match $(aws cloudfront describe-function --name upload-auth --query 'ETag' --output text)",
"cf:deploy": "pnpm cf:update && pnpm cf:publish"
},
"dependencies": {
"@agentcash/router": "0.4.8",
"@aws-sdk/client-s3": "^3.700.0",
"@aws-sdk/s3-request-presigner": "^3.700.0",
"@coinbase/x402": "^2.1.0",
"@neondatabase/serverless": "^1.0.2",
"@prisma/adapter-neon": "^7.2.0",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"@prisma/client-runtime-utils": "^7.4.0",
"@t3-oss/env-nextjs": "^0.12.0",
"@x402/core": "^2.3.0",
"@x402/evm": "^2.3.0",
"@x402/extensions": "^2.3.0",
"dotenv": "^17.2.4",
"mppx": "^0.2.2",
"nanoid": "^5.1.6",
"next": "^15.3.0",
"pg": "^8.16.3",
"react": "^19.0.3",
"react-dom": "^19.0.3",
"viem": "^2.44.1",
"zod": "^4.0.0",
"zod-openapi": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^20.19.28",
"@types/pg": "^8.16.0",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.2",
"eslint-config-next": "^15.3.0",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.6.14",
"prisma": "^7.2.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0"
},
"packageManager": "pnpm@10.28.1"
}