microblog/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2022-11-06 21:07:22 +01:00
{
"private": true,
"scripts": {
"dev": "next dev --turbo",
"dev:tailwind": "concurrently 'next dev --turbo' 'yarn run tailwind --watch'",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tailwind": "tailwindcss -i styles/globals.css -o styles/dist.css",
2022-11-06 22:52:29 +01:00
"format": "prettier --write \"**/*.{js,ts,tsx,md}\""
2022-11-06 21:07:22 +01:00
},
"prettier": {
"arrowParens": "always",
"semi": true,
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
2024-02-07 16:58:31 +01:00
"clsx": "2.1.0",
"concurrently": "8.2.2",
2023-05-12 02:10:15 +02:00
"next": "13.4.2",
2022-11-06 21:07:22 +01:00
"react": "18.2.0",
"react-dom": "18.2.0",
2024-02-07 16:58:31 +01:00
"react-markdown": "9.0.1",
"remark-gfm": "4.0.0",
2022-11-06 22:52:29 +01:00
"server-only": "0.0.1",
2024-02-07 16:58:31 +01:00
"styled-components": "6.1.8",
2023-02-05 02:07:11 +01:00
"styled-jsx": "5.1.2",
2022-11-06 21:07:22 +01:00
"use-count-up": "3.0.1"
},
"devDependencies": {
2024-02-07 16:58:31 +01:00
"@types/node": "20.11.16",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
2024-02-07 16:58:31 +01:00
"autoprefixer": "10.4.17",
"eslint": "8.56.0",
2022-11-06 21:07:22 +01:00
"eslint-config-next": "latest",
2024-02-07 16:58:31 +01:00
"postcss": "8.4.35",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.11",
"tailwindcss": "3.4.1",
"typescript": "5.3.3"
2022-11-06 21:07:22 +01:00
}
}