-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.59 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.59 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
72
73
74
75
76
77
78
79
80
{
"name": "plot-prospector",
"version": "0.1.0",
"private": true,
"scripts": {
"docker:build": "docker-compose up -d --build",
"docker:build-prod": "docker compose -f \"docker-compose.prod.yml\" up -d --build",
"prisma:migrate": "docker-compose exec next-js npx prisma migrate dev && npx prisma generate",
"prisma:studio": "docker-compose exec next-js npx prisma studio",
"prisma:local:generate-types": "prisma generate",
"lint": "next lint --fix",
"format": "pnpm exec prettier . --write",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.6.0",
"autoprefixer": "10.4.16",
"daisyui": "^4.4.2",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"leaflet-geosearch": "^3.11.0",
"libphonenumber-js": "^1.10.51",
"next": "14.0.3",
"next-auth": "^4.24.5",
"next-intl": "3.1.2",
"pino": "^8.16.2",
"prisma": "^5.6.0",
"proj4": "^2.9.2",
"react": "18.2.0",
"react-currency-input-field": "^3.6.12",
"react-dom": "18.2.0",
"react-hook-form": "^7.48.2",
"react-hot-toast": "^2.4.1",
"react-images-uploading": "^3.1.7",
"react-leaflet": "^4.2.1",
"react-phone-number-input": "^3.3.7",
"tailwindcss": "3.3.5",
"tiny-invariant": "^1.3.1",
"vite-tsconfig-paths": "^4.2.1",
"zod": "^3.22.4",
"zustand": "^4.4.6"
},
"devDependencies": {
"@hookform/devtools": "^4.3.1",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/leaflet": "^1.9.8",
"@types/node": "20.9.4",
"@types/proj4": "^2.5.5",
"@types/react": "18.2.38",
"@types/react-dom": "18.2.17",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-istanbul": "^0.34.6",
"eslint": "8.54.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^15.1.0",
"postcss": "8.4.31",
"prettier": "^3.1.0",
"type-fest": "^4.8.2",
"typescript": "5.3.2",
"vitest": "^0.34.6"
}
}