-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.86 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
{
"name": "swamp-hacks",
"version": "0.1.0",
"private": true,
"repository": "https://github.com/swamphacks/swamp-hacks-system",
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-format": "prettier --check --ignore-path .gitignore .",
"format": "prettier --write --ignore-path .gitignore .",
"prepare": "husky"
},
"prisma": {
"seed": "node --loader ts-node/esm prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.0.0",
"@aws-sdk/client-sesv2": "^3.598.0",
"@mantine/core": "^7.8.1",
"@mantine/dates": "^7.9.0",
"@mantine/form": "^7.9.0",
"@mantine/hooks": "^7.8.1",
"@mantine/notifications": "^7.9.2",
"@neondatabase/serverless": "^0.9.1",
"@prisma/adapter-neon": "^5.13.0",
"@prisma/client": "^5.13.0",
"@tabler/icons-react": "^3.2.0",
"@vercel/blob": "^0.26.0",
"@zxing/browser": "^0.1.5",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.11",
"framer-motion": "^11.11.11",
"http-status-codes": "^2.3.0",
"imask": "^7.6.1",
"mantine-react-table": "^2.0.0-beta.5",
"next": "14.2.2",
"next-auth": "^5.0.0-beta.17",
"prettier": "^3.2.5",
"react": "^18",
"react-dom": "^18",
"react-imask": "^7.6.1",
"superjson": "^2.2.1",
"swr": "^2.2.5",
"yup": "^1.4.0"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.2",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.13.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vercel": "^34.4.0"
}
}