website/package.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2024-06-04 21:42:11 +03:00
{
"name": "openfest",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
2024-09-10 10:23:43 +03:00
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
2024-06-04 21:42:11 +03:00
},
"dependencies": {
2024-06-17 20:24:51 +03:00
"@formatjs/intl-localematcher": "^0.5.4",
2024-09-10 10:23:43 +03:00
"@headlessui/react": "^2.1.5",
2024-08-06 14:06:40 +03:00
"gray-matter": "^4.0.3",
2024-06-17 20:24:51 +03:00
"negotiator": "^0.6.3",
2024-09-10 10:23:43 +03:00
"next": "^14.2.8",
2024-06-04 21:42:11 +03:00
"react": "^18",
2024-08-06 14:06:40 +03:00
"react-dom": "^18",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"strip-markdown": "^6.0.0"
2024-06-04 21:42:11 +03:00
},
"devDependencies": {
2024-09-10 10:23:43 +03:00
"@heroicons/react": "^2.1.5",
2024-06-17 20:24:51 +03:00
"@types/negotiator": "^0.6.3",
2024-09-10 10:23:43 +03:00
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
2024-06-04 21:42:11 +03:00
"@types/react-dom": "^18",
2024-09-10 10:23:43 +03:00
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.8",
"install": "^0.13.0",
"npm": "^10.8.3",
"postcss": "^8.4.45",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
2024-06-04 21:42:11 +03:00
}
2024-09-10 10:23:43 +03:00
}