-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 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
{
"name": "brframe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"test:manual": "tsx tests/helpers/manual-trigger.ts",
"cron:trigger": "tsx tests/helpers/manual-trigger.ts",
"docs:cron": "pnpm dlx typedoc lib/reddit/service.ts lib/image/composer.ts lib/email/dispatcher.ts lib/logger.ts lib/config/cron.ts --out docs/cron/api"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.81",
"date-fns-tz": "^3.1.3",
"next": "^16.0.1",
"nodemailer": "^7.0.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"resend": "^3.4.0",
"sharp": "^0.34.5",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "^20.19.24",
"@types/nodemailer": "^7.0.3",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitest/coverage-v8": "^4.0.8",
"@vitest/ui": "^4.0.8",
"autoprefixer": "^10.4.21",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.20.6",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.8"
}
}