-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.99 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
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
{
"name": "companyhub",
"version": "0.1.0",
"private": true,
"type": "module",
"prisma": {
"seed": "node --loader ts-node/esm prisma/seed.ts"
},
"scripts": {
"build": "next build",
"dev": "npx concurrently \"npx localtunnel --port 3000 --subdomain companyhubdev\" \"npm run with-env next dev\"",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start",
"typecheck": "tsc --noEmit",
"test:unit": "npm run with-test-env vitest run --no-threads --test-timeout=50000",
"studio": "npm run with-env npx prisma studio",
"push": "npm run with-env npx prisma db push",
"pull": "npm run with-env npx prisma db pull",
"generate": "npm run with-env npx prisma generate",
"migrate": "npm run with-env npx prisma migrate dev",
"seed:db": "npm run with-env npx prisma db seed",
"reset:db": "npm run with-env npx prisma migrate reset --skip-seed",
"test:ci": "vitest run",
"with-env": "dotenv -e .env.local --",
"with-test-env": "dotenv -e .env.test --"
},
"dependencies": {
"@clerk/nextjs": "4.11.7",
"@formkit/auto-animate": "^1.0.0-beta.6",
"@fullcalendar/core": "^6.1.7",
"@fullcalendar/daygrid": "^6.1.7",
"@fullcalendar/interaction": "^6.1.7",
"@fullcalendar/moment": "^6.1.7",
"@fullcalendar/react": "^6.1.7",
"@fullcalendar/timegrid": "^6.1.7",
"@hookform/resolvers": "^3.1.0",
"@pinecone-database/pinecone": "^0.1.5",
"@prisma/client": "^4.14.1",
"@radix-ui/react-accordion": "^1.1.1",
"@radix-ui/react-alert-dialog": "^1.0.3",
"@radix-ui/react-checkbox": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-label": "^2.0.1",
"@radix-ui/react-popover": "^1.0.5",
"@radix-ui/react-scroll-area": "^1.0.3",
"@radix-ui/react-select": "^1.2.1",
"@radix-ui/react-separator": "^1.0.2",
"@radix-ui/react-slot": "^1.0.1",
"@radix-ui/react-tabs": "^1.0.3",
"@radix-ui/react-toast": "^1.1.3",
"@radix-ui/react-tooltip": "^1.0.5",
"@t3-oss/env-nextjs": "^0.3.1",
"@tanstack/react-query": "^4.10.0",
"@trpc/client": "^10.26.0",
"@trpc/next": "^10.26.0",
"@trpc/react-query": "^10.26.0",
"@trpc/server": "^10.26.0",
"@upstash/ratelimit": "^0.4.3",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"draft-js": "^0.11.7",
"formidable": "^2.1.1",
"langchain": "^0.0.75",
"lucide-react": "^0.214.0",
"mammoth": "^1.5.1",
"markdown-draft-js": "^2.4.0",
"moment": "^2.29.4",
"next": "12.3.1",
"parse-numeric-range": "^1.3.0",
"pdf-parse": "^1.1.1",
"pusher": "^5.1.3",
"pusher-js": "^8.0.2",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-day-picker": "^8.7.1",
"react-dom": "18.2.0",
"react-draft-wysiwyg": "^1.15.0",
"react-hook-form": "^7.43.9",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^3.0.1",
"superjson": "1.9.1",
"tailwind-merge": "^1.12.0",
"tailwindcss-animate": "^1.0.5",
"zod": "^3.18.0",
"zustand": "^4.3.8"
},
"devDependencies": {
"@faker-js/faker": "^8.0.1",
"@types/formidable": "^2.0.6",
"@types/markdown-draft-js": "^2.2.4",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "18.0.5",
"@types/react-draft-wysiwyg": "^1.13.4",
"@types/react-syntax-highlighter": "^15.5.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"autoprefixer": "^10.4.7",
"concurrently": "^8.0.1",
"dotenv-cli": "^7.2.1",
"eslint": "8.22.0",
"eslint-config-next": "12.3.1",
"postcss": "^8.4.14",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.4.0",
"tailwindcss": "^3.1.6",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"vite": "^4.3.8",
"vitest": "^0.31.1"
}
}