-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.75 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
{
"name": "sanjaysoundarajan.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix --cache && yarn format",
"lint:strict": "eslint --cache --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"update-counters": "node ./scripts/update-counters.mjs",
"update-image-metadata": "node ./scripts/update-image-metadata.mjs",
"format": "prettier -w .",
"format:check": "prettier -c .",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"postbuild": "next-sitemap"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@iconify/react": "4.1.1",
"@portabletext/react": "^3.0.0",
"@types/mongo-sanitize": "^1.0.1",
"@types/react-responsive-masonry": "^2.1.0",
"axios": "^1.3.4",
"clsx": "2.1.1",
"dayjs": "^1.11.7",
"dotenv": "^16.1.4",
"framer-motion": "11.3.21",
"groq": "^2.33.2",
"mongo-sanitize": "^1.1.0",
"mongodb": "^6.0.0",
"neko-ts": "^0.0.6",
"next": "14.2.10",
"react": "18.2.0",
"react-accessible-accordion": "^5.0.0",
"react-device-detect": "^2.2.3",
"react-dom": "18.2.0",
"react-icons": "5.2.1",
"react-lottie-player": "1.5.6",
"react-responsive-masonry": "^2.1.7",
"react-tiny-popover": "8.0.4",
"react-tippy": "1.4.0",
"react-toastify": "^10.0.0",
"tailwind-merge": "2.4.0",
"url-metadata": "3.5.6"
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"@fairdataihub/config": "2.2.3",
"@svgr/webpack": "8.1.0",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "^0.5.8",
"@testing-library/jest-dom": "6.4.8",
"@testing-library/react": "14.3.1",
"@types/probe-image-size": "^7.2.0",
"@types/react": "18.2.21",
"@types/tailwindcss": "3.1.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"autoprefixer": "10.4.20",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"megasanjay-devmoji": "^1.2.1",
"next-sitemap": "4.2.3",
"postcss": "8.4.40",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.5",
"run-script-os": "^1.1.6",
"standard-version": "9.5.0",
"tailwindcss": "3.4.7",
"tailwindcss-debug-screens": "2.2.1",
"typescript": "5.5.4"
},
"volta": {
"node": "20.9.0",
"yarn": "1.22.22"
}
}