-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 4.55 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "mu2mi",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky",
"check-types": "tsc --noEmit --pretty",
"commit": "cz",
"release": "standard-version",
"knip": "knip",
"dev": "next dev",
"dev:otel": "NEXT_OTEL_VERBOSE=1 next dev",
"build": "NODE_ENV=production next build",
"build:analyze": "ANALYZE=true npm run build",
"build:docker": "bash -c 'tmpfile=$(mktemp); grep -v ^# .env | grep -v ^$ | tr -d \\\" | while read line; do echo --build-arg $line >> $tmpfile; done; docker build $(cat $tmpfile) -t web -f web.Dockerfile .; rm $tmpfile'",
"start": "cp -r public .next/standalone/public && cp -r .next/static .next/standalone/.next/static && NODE_ENV=production node .next/standalone/server.js",
"start:docker": "bash -c 'docker run -p 3000:3000 --env-file .env web'",
"lint": "next lint",
"format": "prettier --write .",
"db:studio": "drizzle-kit studio",
"db:push": "drizzle-kit push:pg",
"db:introspect": "drizzle-kit introspect:pg",
"db:generate": "drizzle-kit generate:pg",
"db:migrate": "node -r dotenv/config scripts/migrate.mjs",
"cleanup": "node -r dotenv/config scripts/cron-monthly-cleanup.mjs",
"email:dev": "email dev --port 3001 --dir src/components/emails"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.525.0",
"@hookform/resolvers": "^3.3.4",
"@lucia-auth/adapter-drizzle": "^1.0.0",
"@magenta/music": "^1.23.1",
"@marsidev/react-turnstile": "^0.5.3",
"@next/bundle-analyzer": "^14.1.3",
"@next/third-parties": "^14.1.3",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle": "^1.0.3",
"@react-email/components": "0.0.15",
"@react-email/render": "^0.0.12",
"@tanstack/react-query": "^5.17.19",
"@tanstack/react-table": "^8.11.6",
"arctic": "^1.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.0",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.29.3",
"framer-motion": "^11.0.3",
"input-otp": "^1.0.1",
"jszip": "^3.10.1",
"lucia": "^3.0.0",
"lucide-react": "^0.344.0",
"minio": "^7.1.3",
"nanoid": "^5.0.5",
"next": "^14.1.1-canary.59",
"next-safe-action": "^6.1.0",
"next-themes": "^0.2.1",
"oslo": "^1.0.2",
"postgres": "^3.4.3",
"rate-limiter-flexible": "^4.0.1",
"react": "^18",
"react-dom": "^18",
"react-email": "2.1.0",
"react-hook-form": "^7.49.2",
"react-resizable-panels": "^1.0.8",
"redis": "^4.6.12",
"replicate": "^0.25.2",
"server-only": "^0.0.1",
"sharp": "^0.33.2",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"waveform-playlist": "^4.3.3",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@commitlint/cz-commitlint": "^18.4.4",
"@tanstack/eslint-plugin-query": "^5.17.20",
"@tanstack/react-query-devtools": "^5.17.21",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"commitizen": "^4.3.0",
"drizzle-kit": "^0.20.13",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.6",
"inquirer": "^8.2.6",
"knip": "^5.0.1",
"lint-staged": "^15.2.0",
"postcss": "^8",
"prettier": "3.1.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"standard-version": "^9.5.0",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}