-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.66 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
{
"name": "openstoa",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3200",
"build": "next build",
"start": "next start -p 3200",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "vitest run -c vitest.config.e2e.ts",
"generate:skill": "npx tsx scripts/generate-skill.ts",
"prebuild": "npx tsx scripts/generate-skill.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1005.0",
"@aws-sdk/s3-request-presigner": "^3.1005.0",
"@types/pg": "^8.18.0",
"@types/swagger-jsdoc": "^6.0.4",
"@zkproofport-ai/mcp": "^0.2.9",
"@zkproofport-ai/sdk": "^0.2.10",
"@zkproofport-app/sdk": "^0.2.7",
"drizzle-orm": "^0.38.0",
"ethers": "^6.13.0",
"framer-motion": "^12.36.0",
"ioredis": "^5.4.0",
"jose": "^5.0.0",
"next": "^15.1.0",
"pg": "^8.20.0",
"qrcode": "^1.5.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"resend": "^6.9.3",
"socket.io-client": "^4.7.0",
"swagger-jsdoc": "^6.2.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.0.0",
"@types/qrcode": "^1.5.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"dotenv": "^17.3.1",
"drizzle-kit": "^0.30.0",
"jsdom": "^28.1.0",
"playwright": "^1.58.2",
"playwright-extra": "^4.3.6",
"postcss": "^8.4.0",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"tailwindcss": "^4.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}