-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.28 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.28 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
{
"name": "scrollable",
"version": "0.1.0",
"license": "GPL-3.0-only",
"private": true,
"workspaces": [
"frontend"
],
"scripts": {
"dev": "npm --workspace frontend run dev",
"build": "npm --workspace frontend run build",
"start": "npm --workspace frontend run start",
"lint": "npm --workspace frontend run lint --",
"format": "npm --workspace frontend run format --",
"format:check": "npm --workspace frontend run format:check --",
"postinstall": "node scripts/install-ytdlp-standalone.mjs",
"typecheck": "npm --workspace frontend run typecheck --",
"test": "npm --workspace frontend run test --",
"test:watch": "npm --workspace frontend run test:watch --",
"e2e": "npm --workspace frontend run e2e --",
"supabase:start": "set -a; [ ! -f frontend/.env.local ] || . frontend/.env.local; set +a; supabase start",
"supabase:stop": "set -a; [ ! -f frontend/.env.local ] || . frontend/.env.local; set +a; supabase stop",
"supabase:reset": "set -a; [ ! -f frontend/.env.local ] || . frontend/.env.local; set +a; supabase db reset",
"supabase:test": "set -a; [ ! -f frontend/.env.local ] || . frontend/.env.local; set +a; supabase test db"
},
"engines": {
"node": "24.x"
},
"devDependencies": {
"supabase": "^2.95.0"
}
}