-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 945 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 945 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
{
"name": "pacto-p2p-monorepo",
"version": "0.1.0",
"private": true,
"packageManager": "npm@10.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev --filter=@pacto-p2p/web",
"build": "turbo run build",
"start": "turbo run start --filter=@pacto-p2p/web",
"lint": "turbo run lint",
"biome:check": "turbo run biome:check",
"biome:format": "turbo run biome:format",
"biome:lint": "turbo run biome:lint",
"biome:fix": "turbo run biome:fix",
"clean": "turbo run clean",
"type-check": "turbo run type-check",
"db:start": "supabase start",
"db:stop": "supabase stop",
"db:reset": "supabase db reset",
"db:migration": "supabase migration new"
},
"devDependencies": {
"@biomejs/biome": "^2.1.1",
"supabase": "^2.75.1",
"turbo": "^2.0.0",
"typescript": "^5"
},
"dependencies": {
"@trustless-work/escrow": "^2.0.9"
}
}