-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.58 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
{
"name": "bresearch",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"dependencies": {
"@aws-sdk/client-s3": "3.451.0",
"@aws-sdk/s3-request-presigner": "3.451.0",
"@hapi/tlds": "1.0.2",
"@headlessui/react": "1.7.14",
"@heroicons/react": "2.0.18",
"@hookform/resolvers": "3.1.0",
"@popperjs/core": "2.11.8",
"@prisma/client": "5.6.0",
"@supabase/supabase-js": "2.38.4",
"@tanstack/react-query": "4.32.6",
"@tanstack/react-table": "8.10.7",
"dompurify": "3.0.6",
"eslint": "8.27.0",
"eslint-config-next": "13.5.6",
"joi": "17.11.0",
"jsdom": "22.1.0",
"next": "13.5.6",
"next-auth": "4.24.5",
"react": "18.2.0",
"react-datepicker": "4.21.0",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"react-popper": "2.3.0",
"react-hook-form": "7.48.2",
"react-quill": "2.0.0",
"react-select": "5.7.3"
},
"devDependencies": {
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"autoprefixer": "10.4.16",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.2",
"lint-staged": "15.1.0",
"postcss": "8.4.31",
"prettier": "2.8.8",
"prisma": "5.6.0",
"tailwindcss": "3.3.5",
"typescript": "5.4.5"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --check",
"eslint"
],
"*.{css,json,md}": "prettier --check"
}
}