-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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": "mixie",
"private": true,
"scripts": {
"build": "turbo build",
"start": "turbo start",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
"supabase-start": "cd packages/supabase && bun db:restart",
"clean:all": "turbo run clean:all",
"update:all": "bun update --latest && cd apps/web && bun update --latest && cd ../../packages/email && bun update --latest && cd ../eslint-config && bun update --latest && cd ../tsconfig && bun update --latest && cd ../supabase && bun update --latest && cd ../tailwind-config && bun update --latest && cd ../../"
},
"devDependencies": {
"@manypkg/cli": "^0.21.4",
"@types/heic-convert": "^2.1.0",
"eslint": "^9.9.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"turbo": "^2.1.1",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.1.26",
"workspaces": [
"packages/*",
"apps/*",
"packages/email/*"
],
"trustedDependencies": [
"@swc/core",
"@vercel/speed-insights",
"core-js-pure",
"esbuild",
"protobufjs",
"sharp",
"supabase"
]
}