-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.63 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "bytebeat-cloud",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "NEXT_PUBLIC_APP_VERSION=$VERCEL_GIT_COMMIT_SHA next build",
"start": "npx serve out",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"format": "prettier \"**/*.{js,jsx,ts,tsx,json,md,css,scss}\" --write",
"supabase:start": "supabase start",
"test:unit": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/lint": "^6.8.2",
"@codemirror/view": "^6.34.1",
"@supabase/supabase-js": "2.48.0",
"@uiw/codemirror-theme-aura": "^4.25.3",
"@uiw/codemirror-theme-basic": "^4.25.3",
"@uiw/codemirror-theme-github": "^4.25.3",
"@uiw/codemirror-theme-monokai-dimmed": "^4.25.3",
"@uiw/codemirror-theme-noctis-lilac": "^4.25.3",
"@uiw/react-codemirror": "^4.22.0",
"@vercel/og": "^0.8.5",
"codemirror": "^6.0.1",
"mediabunny": "^1.25.8",
"next": "16.0.7",
"react": "19.2.1",
"react-dom": "19.2.1",
"terser": "^5.44.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.48.2",
"@types/node": "20.11.30",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@uiw/codemirror-theme-tomorrow-night-blue": "^4.25.3",
"eslint": "^9",
"eslint-config-next": "^16.0.7",
"prettier": "3.2.5",
"supabase": "^2.65.6",
"typescript": "5.4.5",
"vitest": "^2.1.0"
},
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}