-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
117 lines (117 loc) · 3.38 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
112
113
114
115
116
117
{
"name": "rate-the-landlord",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "bun next dev",
"prebuild": "next telemetry disable",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"start:debug": "NODE_OPTIONS='--inspect=0.0.0.0:9998' next dev",
"format": "prettier --write ./pages/**/*.{ts,tsx} ./components/**/*.{ts,tsx}",
"lint": "eslint . --fix --cache",
"tsc": "tsc",
"test": "jest --watch -o",
"test:merge": "jest --onlyChanged",
"prepare": "husky",
"knip": "knip --production",
"lint:merge": "eslint --fix --quiet $(git --no-pager diff --name-only --diff-filter=d origin/develop...$(git rev-parse --abbrev-ref HEAD) -- '*.{ts,tsx}')"
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.5.0",
"@headlessui/react": "2.2.0",
"@heroicons/react": "^1.0.6",
"@reduxjs/toolkit": "^1.9.2",
"@tailwindcss/postcss": "^4.0.4",
"@tanstack/react-virtual": "3.11.1",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"i18next": "^21.8.14",
"i18next-browser-languagedetector": "^6.1.4",
"lodash": "^4.17.21",
"mapbox-gl": "^3.5.2",
"next": "^14.2.5",
"next-i18next": "^15.4.0",
"next-recaptcha-v3": "^1.5.2",
"next-seo": "^6.0.0",
"next-sitemap": "^4.2.3",
"nprogress": "^0.2.0",
"openai": "^4.24.7",
"postcode-validator": "^3.7.0",
"postgres": "^3.4.3",
"posthog-js": "1.200.1",
"react": "^18.3.1",
"react-adsense": "^0.1.0",
"react-dom": "^18.3.1",
"react-i18next": "^11.18.2",
"react-map-gl": "^7.1.7",
"react-redux": "^8.0.5",
"react-share": "^5.0.3",
"react-toastify": "^10.0.5",
"recharts": "^2.15.0",
"redux": "^4.2.1",
"swr": "^1.3.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@jest/globals": "^29.7.0",
"@next/eslint-plugin-next": "^12.3.4",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.2",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/jest-axe": "^3.5.9",
"@types/mapbox-gl": "^3.4.0",
"@types/node": "^22.13.1",
"@types/react": "^18.0.14",
"@types/redux-mock-store": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"autoprefixer": "^10.4.7",
"eslint": "^9.20.0",
"eslint-config-next": "latest",
"eslint-config-prettier": "^10.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.14.0",
"globby": "^13.1.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"jest-environment-jsdom": "^29.7.0",
"knip": "^5.44.0",
"ley": "^0.8.1",
"next-router-mock": "^0.9.7",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"react-test-renderer": "^18.3.1",
"redux-mock-store": "^1.5.4",
"tailwindcss": "^4.0.4",
"ts-jest": "^29.2.4",
"tsm": "^2.3.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0"
},
"browserslist": [
"> 0.2%",
"last 2 versions",
"not dead"
],
"overrides": {
"eslint": "$eslint"
}
}