-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.17 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
{
"name": "themotleymonkey",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"codegen": "graphql-codegen",
"format": "prettier -w .",
"format:check": "prettier -c .",
"postbuild": "next-sitemap --config next-sitemap.config.js"
},
"dependencies": {
"@radix-ui/react-navigation-menu": "^1.2.3",
"@react-google-maps/api": "^2.20.5",
"@vercel/analytics": "^1.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d": "^1.0.2",
"framer-motion": "^12.0.0",
"graphql": "^16.10.0",
"graphql-request": "6.1.0",
"next": "15.1.4",
"react": "19.0.0",
"react-datocms": "^7.1.0",
"react-dom": "19.0.0",
"react-icons": "^5.4.0",
"react-intersection-observer": "^9.15.0",
"react-lite-youtube-embed": "^2.4.0",
"react-responsive": "^10.0.0",
"react-use-measure": "^2.1.1",
"tailwind-merge": "^2.6.0",
"throttle-debounce": "^5.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/typed-document-node": "^5.0.12",
"@graphql-codegen/typescript": "^4.1.1",
"@graphql-codegen/typescript-operations": "^4.4.0",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "22.10.7",
"@types/react": "19.0.3",
"@types/react-dom": "18.3.1",
"@types/throttle-debounce": "^5.0.2",
"autoprefixer": "^10.4.20",
"eslint": "9.18.0",
"eslint-config-next": "15.1.4",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"graphql-tag": "^2.12.6",
"husky": "^9.1.7",
"next-sitemap": "^4.2.3",
"postcss": "^8.5.0",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"tailwindcss": "^3.4.17",
"tailwindcss-safe-area": "^0.6.0",
"ts-node": "^10.9.2",
"typescript": "5.7.3"
},
"volta": {
"node": "18.17.0",
"yarn": "1.22.18"
}
}