-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 789 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 789 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
{
"name": "livedot",
"version": "0.1.16",
"private": true,
"packageManager": "bun@1.3.5",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun run --filter '*' dev",
"dev:server": "bun run --filter server dev",
"dev:web": "bun run --filter web dev",
"db:generate": "bun run --filter @livedot/db generate",
"db:push": "bun run --filter @livedot/db push",
"geo:download": "bun scripts/download-geodb.ts",
"release": "release-it"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.6",
"conventional-changelog-conventionalcommits": "^9.3.0",
"dotenv": "^17.3.1",
"release-it": "^19.2.4",
"turbo": "^2.8.20"
},
"dependencies": {
"better-auth": "^1.5.5",
"zod": "^4.3.6"
}
}