-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "scribe",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"lint": "biome check --write .",
"lint:fix": "biome check . --write --unsafe",
"format": "biome format . --write",
"prepare": "husky",
"dev": "turbo dev",
"build": "turbo build",
"typecheck": "turbo typecheck",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"db:push": "turbo -F @scribe/db db:push",
"db:studio": "turbo -F @scribe/db db:studio",
"db:generate": "turbo -F @scribe/db db:generate",
"db:migrate": "turbo -F @scribe/db db:migrate",
"db:start": "turbo -F @scribe/db db:start",
"db:watch": "turbo -F @scribe/db db:watch",
"db:stop": "turbo -F @scribe/db db:stop",
"db:down": "turbo -F @scribe/db db:down"
},
"dependencies": {
"dotenv": "^17.2.2",
"framer-motion": "^12.38.0",
"react-markdown": "^10.1.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^22.13.11",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"turbo": "^2.8.3"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write ."
]
},
"packageManager": "pnpm@10.29.2"
}