-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.52 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.52 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
{
"name": "ai-jukebox-hackathon",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"deploy": "vercel --prod",
"deploy-preview": "vercel",
"check-env": "node scripts/check-env.js",
"check-vercel": "node scripts/check-vercel.js",
"test-all": "npm run check-env && npm run dev",
"hackathon:setup": "node scripts/setup-hackathon.js",
"hackathon:deploy": "npm run build && vercel --prod",
"hackathon:verify": "npm run check-vercel",
"test:gemini": "curl -X POST http://localhost:3000/api/generate -H 'Content-Type: application/json' -d '{\"prompt\":\"synthwave for hackathon demo\"}'",
"test:circle": "curl -X POST http://localhost:3000/api/paiement -H 'Content-Type: application/json' -d '{\"songTitle\":\"Test\",\"artist\":\"AI\",\"amount\":\"0.001\"}'",
"test:config": "curl http://localhost:3000/api/config",
"clean": "rm -rf .next node_modules package-lock.json",
"fresh-install": "npm run clean && npm install",
"reset": "npm run clean && npm install"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"dotenv": "^17.2.3",
"next": "14.2.5",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"autoprefixer": "10.4.16",
"eslint": "8.56.0",
"eslint-config-next": "14.2.5",
"postcss": "8.4.32",
"tailwindcss": "3.4.1",
"typescript": "5.3.3"
},
"description": "AI Jukebox - Hackathon Submission for Agentic Commerce on Arc",
"keywords": [
"hackathon",
"arc",
"circle",
"usdc",
"gemini",
"ai",
"blockchain",
"nextjs",
"vercel"
],
"author": "Hackathon Team",
"license": "MIT",
"hackathon": {
"name": "Agentic Commerce on Arc",
"organization": "LabLab.ai",
"partners": [
"Circle",
"Arc",
"Google Gemini"
],
"deadline": "March 9, 2024",
"tracks": [
"Best Autonomous Commerce Application",
"Best Trustless AI Agent",
"Best Gateway-Based Micropayments Integration",
"Best Product Design"
],
"demoReady": true,
"realMode": true
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}