-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"name": "skiphooks",
"type": "module",
"private": true,
"scripts": {
"postinstall": "rm -rf .next && next build",
"dev": "next dev -H 0.0.0.0 -p ${PORT:-8080}",
"build": "next build",
"start": "next start -H 0.0.0.0 -p ${PORT:-8080}",
"test": "bash scripts/test.sh",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"db:migrate": "bun scripts/migrate.ts",
"db:seed": "bun scripts/setup-db.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@clerk/nextjs": "^7.0.4",
"@skip-adapter/postgres": "0.0.19",
"@skipruntime/core": "0.0.19",
"@skipruntime/helpers": "0.0.19",
"@skipruntime/server": "0.0.19",
"@skipruntime/wasm": "0.0.19",
"@types/node": "^22",
"@types/pg": "^8.18.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"next": "^15",
"pg": "^8.20.0",
"postgres": "^3.4.8",
"react": "^19",
"react-dom": "^19",
"typescript": "^5"
},
"devDependencies": {
"@types/bun": "latest"
},
"patchedDependencies": {
"@skip-adapter/postgres@0.0.19": "patches/@skip-adapter%2Fpostgres@0.0.19.patch"
}
}