-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 886 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 886 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
31
32
33
34
35
36
{
"name": "cloudy",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db:sync": "cd apps/supabase && npm run sync",
"db:sync:local": "cd apps/supabase && npm run sync:local"
},
"devDependencies": {
"eslint-config-prettier": "^9.1.0",
"prettier": "3.3.3",
"supabase": "^1.191.3",
"turbo": "^2.1.0",
"typescript": "5.5.3"
},
"overrides": {
"typescript": "5.5.3",
"prettier": "3.3.3",
"yjs": "13.6.19",
"@tiptap/core": "^2.7.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.5.0",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"date-fns": "^3.6.0"
}
}