-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.16 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
{
"name": "workos-tv",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "rm -rf .next/dev/lock && next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"sync": "tsx scripts/sync-all.ts",
"sync:sequential": "tsx scripts/sync-zoom.ts && tsx scripts/sync-gong.ts",
"sync:zoom": "tsx scripts/sync-zoom.ts",
"sync:gong": "tsx scripts/sync-gong.ts",
"generate-previews": "tsx scripts/generate-previews.ts",
"db:clear": "rm -f data/recordings.db data/recordings.db-shm data/recordings.db-wal && echo 'Database cleared. Run npm run sync to re-populate.'"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.72.1",
"@heroicons/react": "^2.2.0",
"better-sqlite3": "^12.6.2",
"dotenv": "^17.2.3",
"nanoid": "^5.1.6",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}