-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 804 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 804 Bytes
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
{
"name": "still-here",
"version": "0.1.0",
"private": true,
"description": "The house checks in, so family doesn't have to. A Ring Partner API caretaking app that knocks before it alarms.",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"sim": "tsx scripts/simulate.ts"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.1126.0",
"next": "^14.2.35",
"react": "18.3.1",
"react-dom": "18.3.1",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"tsx": "4.19.1",
"typescript": "5.6.3",
"vitest": "2.1.2"
}
}