-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.86 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
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "koel-labs-webapp",
"description": "Contains the website for Koel Labs and web interface for the pronunciation learning application.",
"version": "0.1.0",
"dependencies": {
"@custom-react-hooks/use-media-query": "^1.5.1",
"@headlessui/react": "^2.1.3",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-context-menu": "^2.2.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-tooltip": "^1.1.2",
"@vidstack/react": "^1.12.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.33.0",
"embla-carousel-react": "^8.3.0",
"firebase": "^10.14.0",
"firebase-admin": "^12.6.0",
"formidable": "^3.5.2",
"framer-motion": "^11.3.30",
"lucide-react": "^0.407.0",
"media-chrome": "^4.2.3",
"next": "^14.2.15",
"next-themes": "^0.3.0",
"pg": "^8.12.0",
"postcss": "^8",
"react": "^18",
"react-dom": "^18",
"react-google-recaptcha-v3": "^1.10.1",
"recharts": "^2.12.7",
"tailwind-merge": "^2.5.2",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"vaul": "^0.9.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "22.5.2",
"@types/react": "18.3.5",
"css-minimizer-webpack-plugin": "^7.0.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.24.2",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"fixpack": "^4.0.0",
"prettier": "^3.3.3"
},
"engines": {
"node": "^18.17"
},
"private": true,
"proxy": "http://127.0.0.1:8080",
"scripts": {
"build": "next build && cp -r .next/static .next/standalone/.next/ && cp -r public .next/standalone/",
"dev": "next dev",
"docker": ". ./scripts/docker-run-dev.sh",
"format": "(fixpack || true) && (eslint . --fix || true) && prettier --write .",
"license-report": "npx license-report --output=markdown --fields=name --fields=licensePeriod --fields=licenseType --fields=link --fields=author",
"lint": "npx eslint-config-prettier **/*.jsx && next lint && prettier --check .",
"makemigrations": "drizzle-kit generate",
"migrate": "eval $(cat .env.local) && drizzle-kit migrate",
"scan": "gitleaks detect && npm audit && zizmor .",
"start": "next start",
"test": "echo \"Error: not implemented yet \" && exit 1"
}
}