-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "local_events",
"author": "Chris Cozens",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ts-lint": "tsc --noEmit --incremental --watch",
"ts-lint-commit-hook": "tsc --noEmit --incremental",
"prepare": "husky install"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.3.29",
"@hookform/resolvers": "^3.1.0",
"@prisma/client": "^4.14.0",
"@react-google-maps/api": "^2.18.1",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"@types/swagger-ui-react": "^4.18.0",
"downshift": "^7.6.0",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"googleapis": "^118.0.0",
"next": "13.3.0",
"next-swagger-doc": "^0.3.6",
"nodemailer": "^6.9.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-markdown": "^8.0.7",
"react-microsoft-clarity": "^1.2.0",
"react-select": "^5.7.2",
"swagger-ui-react": "^4.18.3",
"typescript": "5.0.4",
"use-places-autocomplete": "^4.0.0",
"zustand": "^4.3.7"
},
"devDependencies": {
"@playwright/test": "^1.33.0",
"@types/google.maps": "^3.52.6",
"@types/nodemailer": "^6.4.7",
"@vitejs/plugin-react": "^3.1.0",
"husky": "^8.0.0",
"prisma": "^4.14.0"
}
}