-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.02 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.02 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
{
"name": "@manuganji/indiestack",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && pnpm run migrate:up",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"zapatos": "node ./generate_zapatos_types.mjs",
"migrate": "node-pg-migrate --config-file pgMigrateConfig.json",
"migrate:up": "pnpm run migrate up",
"migrate:down": "pnpm run migrate down"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.410.0",
"@aws-sdk/client-ses": "^3.410.0",
"@aws-sdk/credential-provider-node": "^3.410.0",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.3.1",
"@jsonforms/core": "^3.1.0",
"@jsonforms/react": "^3.1.0",
"@jsonforms/vanilla-renderers": "^3.1.0",
"@neondatabase/serverless": "^0.6.0",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.4",
"@react-email/button": "0.0.10",
"@react-email/column": "^0.0.7",
"@react-email/container": "^0.0.8",
"@react-email/font": "^0.0.3",
"@react-email/heading": "^0.0.8",
"@react-email/hr": "^0.0.5",
"@react-email/html": "0.0.4",
"@react-email/img": "^0.0.5",
"@react-email/link": "^0.0.5",
"@react-email/markdown": "^0.0.5",
"@react-email/preview": "^0.0.6",
"@react-email/render": "^0.0.7",
"@react-email/row": "^0.0.5",
"@react-email/section": "^0.0.9",
"@react-email/tailwind": "^0.0.8",
"@react-email/text": "^0.0.5",
"@tanstack/react-table": "^8.9.9",
"@types/node": "20.5.6",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@upstash/qstash": "^0.3.6",
"@vercel/postgres": "^0.4.1",
"ajv-cli": "^5.0.0",
"ajv-errors": "^3.0.0",
"ajv-keywords": "^5.1.0",
"autoprefixer": "10.4.15",
"axios": "^1.5.0",
"camelcase-keys": "^9.0.0",
"class-variance-authority": "^0.7.0",
"classnames": "^2.3.2",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"decamelize-keys": "^2.0.1",
"eslint": "8.48.0",
"eslint-config-next": "13.5.1",
"glob": "^10.3.5",
"lodash": "^4.17.21",
"nanoid": "^4.0.2",
"next": "13.5.1",
"next-themes": "^0.2.1",
"node-pg-migrate": "^6.2.2",
"nodemailer": "^6.9.4",
"nodemailer-html-to-text": "^3.2.0",
"pg": "^8.11.3",
"postcss": "8.4.28",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-email": "1.9.4",
"react-hook-form": "^7.46.1",
"server-only": "^0.0.1",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.6",
"ts-node": "^10.9.1",
"usehooks-ts": "^2.9.1",
"ws": "^8.13.0",
"zapatos": "^6.1.4"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/lodash": "^4.14.198",
"@types/nodemailer": "^6.4.9",
"@types/nodemailer-html-to-text": "^3.1.0",
"@types/pg": "^8.10.2",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"dotenv": "^16.3.1",
"prettier": "^3.0.3",
"typescript": "5.2.2"
}
}