diff --git a/package-lock.json b/package-lock.json index ef5f5a3..fb5c0a8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -43,7 +43,6 @@ "@storybook/test": "^8.6.18", "@tailwindcss/postcss": "^4.3.0", "@vitejs/plugin-react": "^4.3.4", - "autoprefixer": "^10.5.0", "jsdom": "^29.1.1", "postcss": "^8.5.15", "storybook": "^8.6.18", @@ -4307,43 +4306,6 @@ "dev": true, "license": "0BSD" }, - "node_modules/autoprefixer": { - "version": "10.5.0", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.5.0.tgz", - "integrity": "sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "browserslist": "^4.28.2", - "caniuse-lite": "^1.0.30001787", - "fraction.js": "^5.3.4", - "picocolors": "^1.1.1", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, "node_modules/available-typed-arrays": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", @@ -5663,20 +5625,6 @@ "node": ">= 8" } }, - "node_modules/fraction.js": { - "version": "5.3.4", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz", - "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": "*" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/rawify" - } - }, "node_modules/framer-motion": { "version": "12.40.0", "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.40.0.tgz", @@ -7206,13 +7154,6 @@ "node": "^10 || ^12 || >=14" } }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true, - "license": "MIT" - }, "node_modules/pretty-format": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", diff --git a/package.json b/package.json index a40215c..34955f8 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,6 @@ "@storybook/test": "^8.6.18", "@tailwindcss/postcss": "^4.3.0", "@vitejs/plugin-react": "^4.3.4", - "autoprefixer": "^10.5.0", "jsdom": "^29.1.1", "postcss": "^8.5.15", "storybook": "^8.6.18", diff --git a/postcss.config.js b/postcss.config.js index b026700..fec6af7 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,9 +1,7 @@ import tailwindcss from '@tailwindcss/postcss'; -import autoprefixer from 'autoprefixer'; export default { plugins: [ tailwindcss, - autoprefixer, ], };