-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 4.96 KB
/
Copy pathpackage.json
File metadata and controls
146 lines (146 loc) · 4.96 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "easy-invoice-pdf",
"version": "1.0.3",
"private": true,
"packageManager": "pnpm@10.33.4+sha512.1c67b3b359b2d408119ba1ed289f34b8fc3c6873412bec6fd264fbdc82489e510fcbecb9ce9d22dae7f3b76269d8441046014bdca53b9979cd7a561ad631b800",
"author": "Vlad Sazonau (https://vladsazon.com)",
"homepage": "https://easyinvoicepdf.com",
"description": "Free and open-source invoice generator. No sign up, no ads, instant PDF download.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit --diagnostics",
"type-check:go": "tsgo --diagnostics",
"lint": "pnpm eslint . --cache",
"lint:fix": "pnpm eslint . --fix",
"prettify": "prettier --write --cache '**/*.{ts?(x),json,js,mjs,yml,yaml,md}'",
"knip": "knip",
"update-deps": "pnpm upgrade --interactive --latest -rLi --config.minimum-release-age=7200",
"vitest": "vitest --reporter=verbose",
"vitest:ui": "vitest --ui",
"e2e": "pnpm exec playwright test --reporter=line",
"e2e:ui": "pnpm exec playwright test --ui",
"e2e:not-flaky": "pnpm e2e --workers=2",
"e2e:update-snapshots": "pnpm e2e --update-snapshots",
"dedupe": "pnpm dedupe",
"lint-stage": "pnpm lint-staged --verbose",
"dev:email": "email dev --dir src/emails",
"prepare": "husky",
"expose-to-internet": "cloudflared tunnel --url http://localhost:3000",
"cloudflared:tunnel": "cloudflared tunnel run easy-invoice-pdf-local-dev",
"corepack:enable": "corepack enable",
"corepack:prepare": "corepack prepare pnpm@latest",
"update-github-actions": "pnpm actions-up --min-age=7",
"check-github-actions-security": "zizmor .",
"test-gh-actions-locally": "act --secret-file .github/workflows/.secrets",
"trigger:dev": "pnpm dlx trigger.dev dev",
"trigger:deploy": "pnpm dlx trigger.dev deploy"
},
"dependencies": {
"@hookform/resolvers": "3.9.0",
"@mdx-js/loader": "3.1.0",
"@mdx-js/react": "3.1.0",
"@next/mdx": "15.3.3",
"@radix-ui/react-accordion": "1.2.3",
"@radix-ui/react-alert-dialog": "1.1.6",
"@radix-ui/react-dialog": "1.1.6",
"@radix-ui/react-dropdown-menu": "2.1.6",
"@radix-ui/react-label": "2.1.2",
"@radix-ui/react-popover": "1.1.6",
"@radix-ui/react-separator": "1.1.2",
"@radix-ui/react-slot": "1.1.2",
"@radix-ui/react-switch": "1.1.3",
"@radix-ui/react-tabs": "1.1.3",
"@radix-ui/react-tooltip": "1.1.8",
"@react-pdf/renderer": "4.3.0",
"@sentry/nextjs": "9.3.0",
"@t3-oss/env-nextjs": "0.13.4",
"@tailwindcss/typography": "0.5.16",
"@trigger.dev/sdk": "4.5.6",
"@types/mdx": "2.0.13",
"@types/qrcode": "1.5.6",
"@types/ua-parser-js": "0.7.39",
"@upstash/ratelimit": "2.0.5",
"@upstash/redis": "1.34.6",
"@vercel/functions": "3.5.1",
"@vercel/speed-insights": "1.2.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cmdk": "1.0.0",
"dayjs": "1.11.13",
"embla-carousel-auto-scroll": "8.6.0",
"embla-carousel-react": "8.6.0",
"eslint-plugin-react-hooks": "5.2.0",
"file-saver": "2.0.5",
"googleapis": "148.0.0",
"jiti": "2.4.2",
"jszip": "3.10.1",
"lucide-react": "0.477.0",
"lz-string": "1.5.0",
"motion": "12.38.0",
"n2words": "1.21.0",
"next": "14.2.15",
"next-intl": "4.0.2",
"qrcode": "1.5.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.53.1",
"react-intersection-observer": "9.16.0",
"react-pdf": "9.2.1",
"remark-gfm": "4.0.1",
"resend": "4.2.0",
"sonner": "1.7.4",
"tailwind-merge": "2.6.0",
"tailwindcss-animate": "1.0.7",
"ua-parser-js": "2.0.3",
"use-debounce": "10.0.4",
"zod": "3.24.4"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.1",
"@next/eslint-plugin-next": "15.2.3",
"@playwright/test": "1.60.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/file-saver": "2.0.7",
"@types/node": "22.8.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript/native-preview": "7.0.0-dev.20260217.1",
"actions-up": "1.14.2",
"autoprefixer": "10.4.21",
"dotenv": "17.2.3",
"eslint": "9.33.0",
"eslint-config-next": "15.2.3",
"eslint-plugin-playwright": "2.2.0",
"eslint-plugin-react-you-might-not-need-an-effect": "0.0.39",
"happy-dom": "20.10.6",
"husky": "9.1.7",
"knip": "5.85.0",
"lint-staged": "15.5.0",
"postcss": "8.5.3",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.11",
"react-email": "4.0.4",
"schema-dts": "1.1.5",
"shadcn": "3.2.1",
"tailwindcss": "3.4.14",
"typescript": "5.9.3",
"typescript-eslint": "8.56.0",
"vitest": "3.2.4"
},
"keywords": [
"invoice",
"pdf",
"invoice generator",
"open source",
"free",
"invoice pdf",
"professional invoice",
"online invoice",
"pdf invoice template",
"easyinvoicepdf"
]
}