-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.27 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
{
"private": true,
"scripts": {
"seed": "node prisma/seed.mjs",
"build": "next build",
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"postinstall": "prisma generate",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage",
"clean": "rimraf .next",
"clean:cache": "rimraf .next && rimraf node_modules/.cache"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.3",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.9.0",
"@mui/material": "^6.4.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@next/bundle-analyzer": "^14.2.5",
"@prisma/client": "^6.0.1",
"@radix-ui/react-label": "^2.1.0",
"@react-leaflet/core": "^2.1.0",
"@tailwindcss/forms": "^0.5.6",
"@types/node": "^20.5.7",
"@vercel/analytics": "^1.4.1",
"@vercel/postgres": "^0.9.0",
"@vercel/speed-insights": "^1.1.0",
"ajv": "^6.12.4",
"auth": "^1.1.1",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"child_process": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"csv-parse": "^5.6.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"exceljs": "^4.4.0",
"glob": "^11.0.0",
"jsonwebtoken": "^9.0.2",
"leaflet": "^1.9.4",
"leaflet-geosearch": "^4.0.0",
"lucide-react": "^0.407.0",
"next": "^14.2.23",
"next-auth": "^4.24.7",
"nodemailer": "^6.9.16",
"openai": "^4.20.1",
"punycode": "^2.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-leaflet": "^4.2.1",
"recharts": "^2.15.0",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"resend": "^3.4.0",
"rimraf": "^6.0.1",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.2.2",
"unified": "^11.0.5",
"use-debounce": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.0",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.6",
"@types/leaflet": "^1.9.8",
"@types/nodemailer": "^6.4.17",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.14",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"core-js": "^3.40.0",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "^14.2.5",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-extended": "^4.0.0-beta1",
"postcss": "^8.5.1",
"postcss-cli": "^11.0.0",
"prettier": "^3.0.3",
"prisma": "^6.0.1",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.2.5",
"whatwg-fetch": "^3.6.20"
},
"engines": {
"node": "20.x",
"npm": ">=9.0.0"
}
}