-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1.13 KB
/
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
{
"name": "company-website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:web": "pnpm --filter web-app dev",
"dev:mobile": "pnpm --filter mobile-app start",
"build:web": "pnpm --filter web-app build",
"start:web": "pnpm --filter web-app start",
"build:mobile": "pnpm --filter mobile-app build",
"test": "pnpm --filter web-app test && pnpm --filter mobile-app test",
"clean": "rm -rf **/node_modules && rm -rf **/pnpm-lock.yaml && rm -rf **/.next && rm -rf **/.expo",
"supabase:start": "cd apps && supabase start && pnpm supabase:genTypes",
"supabase:stop": "cd apps && supabase stop",
"supabase:reset": "cd apps && supabase db reset --local && pnpm supabase:genTypes",
"supabase:migrate": "cd apps && supabase db push --local && pnpm supabase:genTypes",
"supabase:migrate:pull": "cd apps && supabase db pull --local && pnpm supabase:genTypes",
"supabase:genTypes": "cd apps && supabase gen types --lang typescript --local > ../shared/supabaseTypes.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^9.1.2"
}
}