{ "name": "koodiklinikka", "version": "2.0.0", "license": "MIT", "scripts": { "dev": "next dev", "build": "next build", "start": "next start", "lint": "next lint", "prod": "NODE_ENV=production next build", "prettify": "prettier --write ." }, "dependencies": { "lodash.shuffle": "^4.2.0", "next": "14.2.3", "react": "^18", "react-dom": "^18" }, "devDependencies": { "@types/lodash.shuffle": "^4.2.9", "@types/node": "^20", "@types/react": "^18", "@types/react-dom": "^18", "eslint": "^8", "eslint-config-next": "14.2.3", "postcss": "^8", "prettier": "^3.2.5", "prettier-plugin-tailwindcss": "^0.5.14", "tailwindcss": "^3.4.1", "typescript": "^5" }, "prettier": { "printWidth": 120, "singleQuote": true, "trailingComma": "es5", "tabWidth": 2, "useTabs": false, "plugins": [ "prettier-plugin-tailwindcss" ] } }