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": {
|
|
|
|
"clsx": "1.2.1",
|
|
|
|
"concurrently": "7.5.0",
|
2022-11-11 10:03:38 +01:00
|
|
|
"next": "13.0.3",
|
2022-11-06 21:07:22 +01:00
|
|
|
"react": "18.2.0",
|
|
|
|
"react-dom": "18.2.0",
|
2022-11-06 21:16:09 +01:00
|
|
|
"react-markdown": "8.0.3",
|
|
|
|
"remark-gfm": "3.0.1",
|
2022-11-06 22:52:29 +01:00
|
|
|
"server-only": "0.0.1",
|
2022-11-07 09:32:08 +01:00
|
|
|
"styled-components": "6.0.0-beta.5",
|
2022-11-06 21:07:22 +01:00
|
|
|
"styled-jsx": "5.1.0",
|
|
|
|
"use-count-up": "3.0.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-11-07 09:32:08 +01:00
|
|
|
"@types/node": "18.11.9",
|
|
|
|
"@types/react": "18.0.25",
|
|
|
|
"@types/react-dom": "18.0.8",
|
|
|
|
"autoprefixer": "10.4.13",
|
|
|
|
"eslint": "8.27.0",
|
2022-11-06 21:07:22 +01:00
|
|
|
"eslint-config-next": "latest",
|
2022-11-11 10:22:42 +01:00
|
|
|
"postcss": "8.4.19",
|
2022-11-07 09:32:08 +01:00
|
|
|
"prettier": "2.7.1",
|
|
|
|
"prettier-plugin-tailwindcss": "0.1.13",
|
2022-11-10 09:50:54 +01:00
|
|
|
"tailwindcss": "3.2.3",
|
2022-11-07 09:32:08 +01:00
|
|
|
"typescript": "4.8.4"
|
2022-11-06 21:07:22 +01:00
|
|
|
}
|
|
|
|
}
|