-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 964 Bytes
/
package.json
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
{
"name": "athera",
"version": "0.2",
"author": {
"name": "Ariv Afonso"
},
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"apps/*",
"tests"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"start": "turbo run start",
"dev:web": "cd apps/web && turbo run dev",
"dev:web:local": "cd apps/web && turbo run dev:local",
"build:web": "cd apps/web && turbo run build",
"start:web": "cd apps/web && turbo run start",
"db:start": "cd db/supabase && npx supabase start",
"db:stop": "cd db/supabase && npx supabase stop",
"test": "cd db/supabase && npx supabase start && cd ../../tests && npx playwright test"
},
"devDependencies": {
"@types/react": "^18.3.2",
"prettier": "^3.2.5",
"turbo": "latest"
}
}