-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
80 lines (80 loc) · 2.57 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
{
"name": "resap-next",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext js,ts,jsx,tsx",
"lint:fix": "yarn lint --fix",
"contentful-typing": "contentful-typescript-codegen --output src/types/contentful.d.ts",
"tailwind:viewer": "tailwind-config-viewer -o"
},
"dependencies": {
"@contentful/rich-text-from-markdown": "^15.13.1",
"@contentful/rich-text-html-renderer": "^15.13.1",
"@contentful/rich-text-plain-text-renderer": "^15.12.1",
"@contentful/rich-text-types": "^15.12.1",
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^1.0.6",
"@react-leaflet/core": "^2.0.1",
"@tailwindcss/line-clamp": "^0.4.0",
"@types/leaflet.markercluster": "^1.5.1",
"@vercel/analytics": "^1.2.2",
"algoliasearch": "^4.14.2",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"contentful": "^9.1.34",
"instantsearch.js": "^4.45.0",
"leaflet": "^1.8.0",
"leaflet.markercluster": "^1.5.3",
"next": "^12.2.5",
"next-seo": "^5.5.0",
"nodemailer": "^6.7.8",
"nodemailer-react": "^1.0.2",
"nprogress": "^0.2.0",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.34.2",
"react-instantsearch-hooks": "^6.32.1",
"react-instantsearch-hooks-server": "^6.32.1",
"react-json-view": "^1.21.3",
"react-leaflet": "^4.0.2",
"react-share": "^4.4.0",
"react-toast-notifications": "^2.5.1"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.4",
"@types/leaflet": "^1.7.11",
"@types/node": "^18.7.14",
"@types/nodemailer": "^6.4.5",
"@types/nprogress": "^0.2.0",
"@types/ramda": "^0.28.15",
"@types/react": "^18.0.18",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"autoprefixer": "10.4.5",
"contentful-cli": "^1.15.1",
"contentful-management": "^10.12.0",
"contentful-typescript-codegen": "^3.2.3",
"dotenv": "^16.0.2",
"eslint": "8.22.*",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.2.5",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwind-config-viewer": "^1.7.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.2"
}
}