-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·86 lines (86 loc) · 2.46 KB
/
package.json
File metadata and controls
executable file
·86 lines (86 loc) · 2.46 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
81
82
83
84
85
86
{
"name": "skatehub-frontend",
"version": "1.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"prebuild": "pnpm run format:imports",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,md,mdx,css,yaml,yml}\"",
"format:imports": "eslint \"src/**/*.{ts,tsx}\" --fix",
"check": "prettier --check \"**/*.{ts,tsx,js,jsx,md,mdx,css,yaml,yml}\"",
"prepare": "husky"
},
"dependencies": {
"@chakra-ui/anatomy": "^2.3.4",
"@chakra-ui/next-js": "^2.4.2",
"@chakra-ui/react": "^2.10.3",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@hookform/resolvers": "^3.9.1",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/api-logs": "^0.215.0",
"@sentry/nextjs": "^10.50.0",
"@tanstack/react-query": "^5.90.2",
"@vercel/analytics": "^2.0.1",
"@vercel/otel": "^2.1.2",
"@vercel/speed-insights": "^2.0.0",
"axios": "^1.15.0",
"boring-avatars": "^2.0.4",
"date-fns": "^4.1.0",
"framer-motion": "^11.11.11",
"import-in-the-middle": "^2.0.6",
"mapbox-gl": "^3.21.0",
"next": "16.0.7",
"nodemailer": "^6.9.16",
"nookies": "^2.5.2",
"posthog-js": "^1.372.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.53.1",
"react-icons": "^5.3.0",
"react-insta-stories": "^2.8.0",
"require-in-the-middle": "^8.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.36.0",
"@types/cookie": "^0.6.0",
"@types/node": "^20",
"@types/nodemailer": "^6.4.16",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-google-recaptcha": "^2.1.9",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.5.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5",
"typescript-eslint": "^8.46.4"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx,md,mdx,css,yaml,yml}": [
"prettier --write"
],
"src/**/*.{ts,tsx,js,jsx}": [
"eslint --fix"
]
},
"pnpm": {
"overrides": {
"import-in-the-middle": "3.0.1",
"require-in-the-middle": "8.0.1"
}
},
"packageManager": "pnpm@9.15.9"
}