Fix prettier config & dependencies

This commit is contained in:
cohenerickson 2023-12-14 08:44:24 -06:00
parent ea8bcdfc72
commit 6a76eee11f
3 changed files with 5390 additions and 5303 deletions

View file

@ -1,10 +1,8 @@
{
"singleQuote": false,
"endOfLine": "crlf",
"singleQuote": false,
"endOfLine": "crlf",
"tabWidth": 2,
"useTabs": false,
"trailingComma": "none",
"plugins": [
"prettier-plugin-tailwindcss"
]
"useTabs": false,
"trailingComma": "none",
"plugins": ["prettier-plugin-tailwindcss"]
}

10620
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,31 +1,34 @@
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@tomphttp/bare-server-node": "^2.0.1",
"i18next": "^23.7.9",
"i18next-browser-languagedetector": "^7.2.0",
"million": "^2.6.4",
"preact": "^10.13.1",
"preact-iso": "^2.3.2",
"preact-render-to-string": "^6.3.1",
"preact-router": "^4.1.2",
"react-i18next": "^13.5.0",
"react-icons": "^4.12.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.5.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-preact": "^1.3.0",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.3",
"vite": "^4.3.2"
}
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write ."
},
"dependencies": {
"@tomphttp/bare-server-node": "^2.0.1",
"i18next": "^23.7.9",
"i18next-browser-languagedetector": "^7.2.0",
"million": "^2.6.4",
"preact": "^10.13.1",
"preact-iso": "^2.3.2",
"preact-render-to-string": "^6.3.1",
"preact-router": "^4.1.2",
"react-i18next": "^13.5.0",
"react-icons": "^4.12.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.5.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-preact": "^1.3.0",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.3",
"vite": "^4.3.2"
}
}