forked from captableinc/captable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.15 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.15 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
{
"name": "captable",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"build": "next build",
"docker:start": "docker-compose -f docker/docker-compose.yml up -d",
"db:push": "npx prisma db push",
"db:studio": "npx prisma studio",
"db:migrate": "npx prisma migrate dev",
"db:seed": "NODE_ENV='test' npx tsx prisma/seeds/index.ts",
"dev": "next dev",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start",
"format": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx}\" && npx prisma format",
"email:dev": "mailpit",
"email:preview": "email preview ./src/emails",
"copy:pdfjs": "node scripts/copy-pdfjs-worker.cjs",
"trigger": "npx @trigger.dev/cli@latest dev",
"deploy:fly": "fly deploy"
},
"dependencies": {
"@ark-ui/react": "^2.2.3",
"@aws-sdk/client-s3": "^3.525.0",
"@aws-sdk/s3-request-presigner": "^3.540.0",
"@blocknote/react": "^0.12.2",
"@hookform/resolvers": "^3.3.4",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.12.1",
"@prisma/generator-helper": "^5.9.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@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-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.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-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toolbar": "^1.0.4",
"@remixicon/react": "^4.0.1",
"@sindresorhus/slugify": "^2.2.1",
"@t3-oss/env-nextjs": "^0.9.2",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-table": "^8.15.0",
"@tremor/react": "^3.14.1",
"@trigger.dev/nextjs": "^2.3.18",
"@trigger.dev/react": "^2.3.18",
"@trigger.dev/sdk": "^2.3.18",
"@trpc/client": "^10.43.6",
"@trpc/next": "^10.43.6",
"@trpc/react-query": "^10.43.6",
"@trpc/server": "^10.43.6",
"@types/papaparse": "^5.3.14",
"@wojtekmaj/react-hooks": "^1.18.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^1.0.0",
"dayjs": "^1.11.10",
"html-to-image": "^1.11.11",
"input-otp": "^1.1.0",
"jsx-email": "^1.7.2",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.4",
"next": "^14.1.4",
"next-auth": "^4.24.7",
"next-nprogress-bar": "^2.3.11",
"nodemailer": "^6.9.8",
"papaparse": "^5.4.1",
"pdf-lib": "^1.17.1",
"prisma-json-types-generator": "^3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.51.2",
"react-number-format": "^5.3.1",
"react-pdf": "^7.7.0",
"server-only": "^0.0.1",
"sharp": "^0.33.2",
"superjson": "^2.2.1",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.4.0",
"@flydotio/dockerfile": "^0.5.4",
"@tailwindcss/typography": "^0.5.12",
"@types/eslint": "^8.56.5",
"@types/inquirer": "^9.0.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.2",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.23",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"autoprefixer": "^10.4.19",
"colors": "^1.4.0",
"eslint": "^8.54.0",
"eslint-config-next": "^14.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"inquirer": "^9.2.17",
"lint-staged": "^15.2.0",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.13",
"prisma": "^5.12.1",
"tailwindcss": "^3.4.3",
"tsx": "^4.7.0",
"typescript": "^5.4.3"
},
"ct3aMetadata": {
"initVersion": "7.25.1"
},
"trigger.dev": {
"endpointId": "captable-A0-I"
}
}