109 lines
3.5 KiB
JSON
109 lines
3.5 KiB
JSON
|
{
|
||
|
"name": "tailwind-bootstrap-grid",
|
||
|
"version": "5.1.0",
|
||
|
"description": "Tailwind CSS plugin to generate Bootstrap flexbox grid system.",
|
||
|
"keywords": [
|
||
|
"bootstrap",
|
||
|
"flexbox",
|
||
|
"grid",
|
||
|
"grid system",
|
||
|
"layout",
|
||
|
"rtl",
|
||
|
"tailwindcss"
|
||
|
],
|
||
|
"repository": "karolis-sh/tailwind-bootstrap-grid",
|
||
|
"license": "MIT",
|
||
|
"author": "Karolis Šarapnickis <hi@karolis.sh>",
|
||
|
"main": "lib/index.js",
|
||
|
"types": "types/index.d.ts",
|
||
|
"files": [
|
||
|
"lib",
|
||
|
"types"
|
||
|
],
|
||
|
"scripts": {
|
||
|
"build": "run-p build:*",
|
||
|
"build:demo": "cross-env NODE_ENV=production webpack --mode production --config demo/webpack.config.js",
|
||
|
"build:sample": "run-p build:sample:*",
|
||
|
"build:sample:prefix-separator": "cd samples/prefix-separator && NODE_ENV=production tailwindcss --no-autoprefixer -i input.css -o output.css",
|
||
|
"build:sample:purge": "cd samples/purge && NODE_ENV=production tailwindcss -i input.css -o output.css",
|
||
|
"build:sample:default": "cd samples/default && NODE_ENV=production tailwindcss -i input.css -o output.css",
|
||
|
"build:sample:tw-default": "cd samples/tw-default && NODE_ENV=production tailwindcss -i input.css -o output.css",
|
||
|
"clean": "rm -rf build && rm -rf samples/*/output.css",
|
||
|
"commit": "cz",
|
||
|
"format": "run-p format:*",
|
||
|
"format:js": "prettier --write '**/*.*'",
|
||
|
"format:package-json": "sort-package-json",
|
||
|
"lint": "run-p lint:*",
|
||
|
"lint:js": "eslint . --cache",
|
||
|
"lint:md": "markdownlint-cli2 '**/*.md' '!node_modules' '!**/node_modules' '!**/CHANGELOG.md'",
|
||
|
"qa": "run-p test lint",
|
||
|
"release": "npm i && run-s clean build qa && standard-version --no-verify && git push --follow-tags --no-verify && npm publish",
|
||
|
"dev": "webpack serve --mode development --config demo/webpack.config.js",
|
||
|
"tdd": "npm test -- --watch",
|
||
|
"test": "jest tests",
|
||
|
"try-demo": "run-s clean build:demo && serve build",
|
||
|
"prepare": "husky install"
|
||
|
},
|
||
|
"lint-staged": {
|
||
|
"*.js": "eslint --fix",
|
||
|
"package.json": "sort-package-json"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"joi": "^17.5.0",
|
||
|
"picocolors": "^1.0.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.20.7",
|
||
|
"@babel/preset-env": "^7.20.2",
|
||
|
"@babel/preset-react": "^7.18.6",
|
||
|
"@commitlint/cli": "^17.3.0",
|
||
|
"@commitlint/config-conventional": "^17.3.0",
|
||
|
"@k.sh/eslint-plugin": "^0.6.0",
|
||
|
"@k.sh/prettier-config": "^0.4.1",
|
||
|
"@mdx-js/loader": "^1.6.22",
|
||
|
"@mdx-js/react": "^1.6.22",
|
||
|
"autoprefixer": "^10.4.13",
|
||
|
"babel-loader": "^9.1.0",
|
||
|
"commitizen": "^4.3.0",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"css-loader": "^6.7.3",
|
||
|
"cz-conventional-changelog": "^3.3.0",
|
||
|
"eslint": "^8.30.0",
|
||
|
"eslint-plugin-jsdoc": "^46.9.0",
|
||
|
"html-webpack-plugin": "^5.5.0",
|
||
|
"husky": "^7.0.4",
|
||
|
"jest": "^27.5.1",
|
||
|
"lint-staged": "^12.3.4",
|
||
|
"markdownlint-cli2": "^0.5.1",
|
||
|
"mini-css-extract-plugin": "^2.7.2",
|
||
|
"npm-run-all": "^4.1.5",
|
||
|
"postcss": "^8.4.20",
|
||
|
"postcss-loader": "^7.0.2",
|
||
|
"prettier": "^2.8.1",
|
||
|
"prettier-plugin-sh": "^0.12.8",
|
||
|
"pretty-quick": "^3.1.3",
|
||
|
"prop-types": "^15.7.2",
|
||
|
"react": "^17.0.2",
|
||
|
"react-dom": "^17.0.2",
|
||
|
"react-helmet-async": "^2.0.1",
|
||
|
"react-hot-loader": "^4.13.0",
|
||
|
"react-live": "^2.2.3",
|
||
|
"serve": "^11.3.2",
|
||
|
"sort-package-json": "^2.1.0",
|
||
|
"standard-version": "^9.3.2",
|
||
|
"tailwindcss": "^3.3.5",
|
||
|
"webpack": "^5.75.0",
|
||
|
"webpack-cli": "^5.0.1",
|
||
|
"webpack-dev-server": "^4.11.1"
|
||
|
},
|
||
|
"peerDependencies": {
|
||
|
"tailwindcss": "^3"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">= 12.0.0"
|
||
|
},
|
||
|
"volta": {
|
||
|
"node": "20.9.0"
|
||
|
}
|
||
|
}
|