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",
|
2023-03-29 07:21:23 +02:00
|
|
|
"concurrently": "8.0.1",
|
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",
|
2023-04-12 17:56:06 +02:00
|
|
|
"react-markdown": "8.0.7",
|
2022-11-06 21:16:09 +01:00
|
|
|
"remark-gfm": "3.0.1",
|
2022-11-06 22:52:29 +01:00
|
|
|
"server-only": "0.0.1",
|
2023-05-06 23:48:50 +02:00
|
|
|
"styled-components": "6.0.0-rc.1",
|
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": {
|
2023-05-13 16:46:04 +02:00
|
|
|
"@types/node": "18.16.9",
|
2024-04-16 00:25:42 +02:00
|
|
|
"@types/react": "18.2.79",
|
|
|
|
"@types/react-dom": "18.2.25",
|
2023-03-20 18:39:26 +01:00
|
|
|
"autoprefixer": "10.4.14",
|
2023-05-05 23:44:43 +02:00
|
|
|
"eslint": "8.40.0",
|
2022-11-06 21:07:22 +01:00
|
|
|
"eslint-config-next": "latest",
|
2023-04-19 21:30:39 +02:00
|
|
|
"postcss": "8.4.23",
|
2023-04-23 11:35:12 +02:00
|
|
|
"prettier": "2.8.8",
|
2023-04-29 22:23:28 +02:00
|
|
|
"prettier-plugin-tailwindcss": "0.2.8",
|
|
|
|
"tailwindcss": "3.3.2",
|
2023-04-08 01:30:22 +02:00
|
|
|
"typescript": "5.0.4"
|
2022-11-06 21:07:22 +01:00
|
|
|
}
|
|
|
|
}
|