-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.29 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.29 KB
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
{
"name": "search",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "next lint --dir .",
"format": "prettier --write .",
"check-types": "tsc --noEmit",
"test": "jest",
"generate_listing_data": "bun run ./bin/generate_listing_data",
"seed_listing_data": "bun run ./bin/seed_listing_data",
"seed_boundary_data": "bun run ./bin/seed_boundary_data",
"seed_dev_data": "bun run ./bin/seed_boundary_data && bun run ./bin/seed_listing_data",
"generate_and_seed_listing_data": "bun run ./bin/generate_listing_data && bun run ./bin/seed_listing_data",
"prisma:generate:local": "dotenv -e .env.local prisma generate",
"prisma:validate:local": "dotenv -e .env.local prisma validate"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.3.28",
"@googlemaps/js-api-loader": "^1.16.2",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.7.1",
"@reduxjs/toolkit": "^2.0.1",
"@turf/turf": "^6.5.0",
"axios": "^1.6.3",
"date-fns": "^2.30.0",
"lodash": "^4.17.21",
"mongoose": "^7.0.3",
"next": "14.0.4",
"next-auth": "^4.24.5",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-content-loader": "^6.2.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.49.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.12.0",
"react-modal": "^3.16.1",
"react-number-format": "^5.3.1",
"react-redux": "^9.0.4",
"react-use": "^17.4.2",
"slugify": "^1.6.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^8.0.0",
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.6.1",
"@types/google.maps": "^3.54.10",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "20.10.5",
"@types/react": "18.2.46",
"@types/react-modal": "^3.16.3",
"@types/react-redux": "^7.1.33",
"dotenv-cli": "^7.3.0",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"exponential-backoff": "^3.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.5.3",
"prisma": "^5.7.1",
"typescript": "^5.7.2",
"yargs": "17.7.2"
}
}