-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
94 lines (94 loc) · 2.93 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
{
"name": "expense.fyi",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"test": "npm run check-lint && npm run check-types",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"format:write": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx}\"",
"format": "prettier \"**/*.{css,js,json,jsx,ts,tsx}\"",
"prebuild": "npm run test && prisma format && prisma generate",
"predev": "prisma format && prisma generate",
"dbpush": "npm run predev && prisma db push",
"premigrate": "prisma db pull",
"migrate": "prisma migrate dev --name initial-migration --create-only",
"email:dev": "email dev -p 3001",
"email:export": "email export",
"prepare": "husky install"
},
"workspaces": [
".react-email"
],
"dependencies": {
"@headlessui/react": "^1.7.18",
"@prisma/client": "^5.8.0",
"@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-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.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-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-email/components": "0.0.12",
"@react-email/render": "^0.0.10",
"@supabase/auth-helpers-nextjs": "^0.8.7",
"@supabase/supabase-js": "^2.39.3",
"@tanstack/react-table": "^8.11.6",
"@tremor/react": "^3.13.1",
"autoprefixer": "10.4.16",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.0",
"date-fns": "^3.2.0",
"debounce": "^2.0.0",
"encoding": "^0.1.13",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"lucide-react": "^0.309.0",
"next": "14.0.4",
"next-themes": "^0.2.1",
"nextjs-toploader": "^1.6.4",
"postcss": "8.4.33",
"prisma": "^5.8.0",
"prisma-field-encryption": "^1.5.1",
"react": "18.2.0",
"react-day-picker": "^8.10.0",
"react-dom": "18.2.0",
"react-email": "1.10.0",
"react-hotkeys-hook": "^4.4.4",
"resend": "^2.1.0",
"sonner": "^1.3.1",
"swr": "^2.2.4",
"tailwind-merge": "^2.2.0",
"tailwindcss": "3.4.1",
"tailwindcss-animate": "^1.0.7",
"text-filter": "^0.1.1",
"typescript": "5.3.3",
"vaul": "^0.8.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "20.11.0",
"@types/react": "18.2.47",
"@types/react-dom": "18.2.18",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"prettier": "3.2.1",
"prettier-plugin-tailwindcss": "^0.5.11"
}
}