Skip to content

Commit

Permalink
Merge pull request #217 from morsellif/morsellif--cssnano
Browse files Browse the repository at this point in the history
fix: added missing dep `cssnano`
  • Loading branch information
morsellif authored Mar 26, 2024
2 parents b5d71e0 + 76d43ac commit 2eb3112
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 62 deletions.
Binary file modified bun.lockb
Binary file not shown.
125 changes: 63 additions & 62 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,64 +1,65 @@
{
"name": "easy-radio",
"packageManager": "[email protected]",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/morsellif/easy-radio.git"
},
"version": "0.0.0",
"scripts": {
"preinstall": "npx only-allow bun",
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"typecheck": "nuxt typecheck",
"postinstall": "nuxt prepare",
"prettier": "prettier --write \"./src/**/*.{ts,tsx,js,vue}\"",
"prettier:check": "prettier --check \"./src/**/*.{ts,tsx,js,vue}\"",
"lint": "eslint --ext .ts,vue --ignore-path .gitignore . --fix",
"prepare": "husky",
"vercel-build": "NODE_ENV=production nuxt build"
},
"dependencies": {
"@headlessui/vue": "^1.7.19",
"@pinia/nuxt": "^0.5.1",
"axios": "1.6.8",
"hls.js": "^1.5.7",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@nuxt/devtools": "^1.1.3",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/i18n": "8.2.0",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vueuse/core": "^10.9.0",
"@vueuse/nuxt": "^10.9.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.23.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nuxt": "^3.11.1",
"only-allow": "^1.2.1",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.3",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^2.0.7"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --cache --fix",
"prettier --write"
]
}
"name": "easy-radio",
"packageManager": "[email protected]",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/morsellif/easy-radio.git"
},
"version": "0.0.0",
"scripts": {
"preinstall": "npx only-allow bun",
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"typecheck": "nuxt typecheck",
"postinstall": "nuxt prepare",
"prettier": "prettier --write \"./src/**/*.{ts,tsx,js,vue}\"",
"prettier:check": "prettier --check \"./src/**/*.{ts,tsx,js,vue}\"",
"lint": "eslint --ext .ts,vue --ignore-path .gitignore . --fix",
"prepare": "husky",
"vercel-build": "NODE_ENV=production nuxt build"
},
"dependencies": {
"@headlessui/vue": "^1.7.19",
"@pinia/nuxt": "^0.5.1",
"axios": "1.6.8",
"hls.js": "^1.5.7",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@nuxt/devtools": "^1.1.3",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/i18n": "8.2.0",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vueuse/core": "^10.9.0",
"@vueuse/nuxt": "^10.9.0",
"autoprefixer": "^10.4.19",
"cssnano": "^6.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.23.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nuxt": "^3.11.1",
"only-allow": "^1.2.1",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.3",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^2.0.7"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --cache --fix",
"prettier --write"
]
}
}

0 comments on commit 2eb3112

Please sign in to comment.