This commit is contained in:
Sebastian Seedorf
2022-08-18 09:20:00 +02:00
parent 92b762bbd2
commit de95f57b18
60 changed files with 3450 additions and 994 deletions

View File

@@ -6,7 +6,11 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"lint:fix": "tsc --noEmit && prettier --write --loglevel warn . && eslint --fix . && stylelint --fix **/*.css",
"eslint:fix": "eslint --fix .",
"stylelint:fix": " stylelint --fix **/*.css",
"prepare": "husky install"
},
"dependencies": {
"classnames": "^2.3.1",
@@ -30,9 +34,18 @@
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/seedrandom": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"json-schema-to-typescript": "^11.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"stylelint": "^14.10.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-standard": "^27.0.0",
"typescript": "4.7.4"
}
}