-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.31 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
{
"name": "hackuta2023-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && dprint check",
"lint:fix": "next lint --fix && dprint fmt",
"fmt": "dprint fmt"
},
"pre-commit": {
"run": [
"lint"
]
},
"dependencies": {
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@mailchimp/mailchimp_transactional": "^1.0.50",
"@next-auth/mongodb-adapter": "^1.1.3",
"@sendgrid/mail": "^7.7.0",
"@supercharge/promise-pool": "^3.0.0",
"@types/mailchimp__mailchimp_transactional": "^1.0.5",
"@types/node": "^20.7.0",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"classnames": "^2.3.2",
"client-only": "^0.0.1",
"date-fns": "^2.30.0",
"dot": "^1.1.3",
"eslint": "^8.49.0",
"eslint-config-next": "^13.5.2",
"framer-motion": "^10.16.4",
"iconoir-react": "^6.2.0",
"immer": "^10.0.3",
"jsdom": "^21.1.1",
"jszip": "^3.10.1",
"meshgrad": "^0.0.15",
"mongodb": "^5.5.0",
"next": "^13.4.7",
"next-auth": "^4.22.0",
"node-fetch": "^3.3.1",
"nodemailer": "^6.9.5",
"pino": "^8.15.1",
"primereact": "^9.6.2",
"qrcode": "^1.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-html-props": "^2.0.2",
"react-iframe": "^1.8.5",
"react-remark": "^2.1.0",
"react-select": "^5.7.5",
"react-zxing": "^2.0.0",
"rehype-raw": "^5.1.0",
"rehype-sanitize": "^4.0.0",
"remark-gfm": "^1.0.0",
"styled-components": "^6.0.8",
"swr": "^2.2.2",
"tailwind-merge": "^1.14.0",
"typescript": "^5.2.2",
"use-immer": "^0.9.0",
"validator": "^13.9.0",
"zod": "^3.21.4",
"zod-validation-error": "^1.2.1"
},
"devDependencies": {
"@acmuta/planby": "^3.4.0",
"@svgr/webpack": "^8.1.0",
"@types/dot": "^1.1.5",
"@types/jsdom": "^21.1.3",
"@types/nodemailer": "^6.4.10",
"@types/qrcode": "^1.5.2",
"@types/validator": "^13.7.14",
"autoprefixer": "^10.4.16",
"dprint": "^0.41.0",
"eslint-config-prettier": "^9.0.0",
"pino-pretty": "^10.2.0",
"postcss": "^8.4.30",
"pre-commit": "^1.2.2",
"tailwindcss": "^3.3.3"
}
}