-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.11 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.11 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
{
"name": "threds",
"productName": "threds",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./desktop/main.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "tsc --noEmit && node scripts/check-supabase-usage.js && node scripts/check-local-pg-rpcs.js",
"local:pg:bootstrap": "node --loader ts-node/esm scripts/local-pg-bootstrap.ts",
"desktop:dev": "DESKTOP_NEXT_DEV=1 electron-forge start",
"desktop:package": "node scripts/desktop-package.js package",
"desktop:make": "node scripts/desktop-package.js make",
"prebuild": "node scripts/ensure-preview-user.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"@blueprintjs/core": "^5.19.1",
"@blueprintjs/icons": "^6.5.0",
"@google/generative-ai": "^0.11.1",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.89.0",
"next": "^14.2.15",
"node-html-markdown": "^2.0.0",
"openai": "^4.75.1",
"pg": "^8.16.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"reactflow": "^11.10.2",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"simple-git": "^3.24.0",
"swr": "^2.2.5",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@electron-forge/cli": "^7.6.0",
"@electron-forge/maker-dmg": "^7.6.0",
"@electron-forge/maker-zip": "^7.6.0",
"@playwright/test": "^1.48.2",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.16.10",
"@types/pg": "^8.16.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.2",
"@types/uuid": "^9.0.7",
"autoprefixer": "^10.4.20",
"electron": "^32.2.1",
"esbuild": "^0.25.9",
"jsdom": "^27.3.0",
"next-test-api-route-handler": "^5.0.3",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "^4.0.15"
}
}