-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "aide",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Aide — voice-native work & pay platform for blind users.",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"account": "tsx src/create-account.ts",
"inbound": "tsx src/inbound.ts",
"proof": "tsx src/proof.ts",
"webhook": "tsx src/webhook.ts",
"balance": "tsx src/balance.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@ai-sdk/deepseek": "^0.2.16",
"ai": "^4.3.0",
"convex": "^1.42.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"next": "^15.3.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4.1.0",
"@types/express": "^4.17.21",
"@types/node": "^20.14.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"convex-test": "^0.0.56",
"tailwindcss": "^4.1.0",
"tsx": "^4.16.0",
"typescript": "^5.5.3",
"vitest": "^4.1.11"
}
}