-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.17 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
{
"name": "FreeInvoice.dev",
"description": "Professional invoices in seconds. Completely free, user-friendly, and secure with client-side processing — your data stays with you.",
"version": "1.0.0",
"private": true,
"author": "João Pedro Schmitz (@jpedroschmitz)",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"test:e2e": "playwright test",
"test:e2e:playwright": "playwright test --ui",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"@ag-media/react-pdf-table": "1.0.1",
"@headlessui/react": "2.1.9",
"@heroicons/react": "2.1.5",
"@hookform/resolvers": "3.9.0",
"@next/bundle-analyzer": "14.2.15",
"@react-pdf/renderer": "4.0.0",
"autoprefixer": "10.4.20",
"clsx": "2.1.1",
"currency.js": "2.0.4",
"date-fns": "4.1.0",
"framer-motion": "11.11.7",
"next": "14.2.8",
"postcss": "8.4.47",
"react": "18.3.1",
"react-currency-input-field": "3.8.0",
"react-dom": "18.3.1",
"react-hook-form": "7.53.0",
"react-pdf-tailwind": "2.3.0",
"tailwindcss": "3.4.13",
"zod": "3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
"@playwright/test": "1.48.1",
"@types/node": "20.16.10",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "8.8.0",
"@typescript-eslint/parser": "8.8.0",
"eslint": "8.57.1",
"eslint-config-next": "14.2.14",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"prettier-plugin-sort-json": "4.0.0",
"typescript": "5.6.2"
}
}