react-smart-data-table
Version:
A smart data table component for React.js meant to be configuration free
130 lines (129 loc) • 4.09 kB
JSON
{
"name": "react-smart-data-table",
"version": "0.16.0",
"description": "A smart data table component for React.js meant to be configuration free",
"private": false,
"main": "dist/react-smart-data-table.js",
"exports": {
".": "./dist/react-smart-data-table.js"
},
"types": "./dist/react-smart-data-table.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"dist"
],
"scripts": {
"build:dev": "NODE_ENV=development webpack",
"build:docs": "yarn clean && yarn prd && rm -f dist/react-smart-data-table.* && cp docs/* dist/",
"build:example-dev": "NODE_ENV=development webpack --config webpack.dev.js",
"build:example": "NODE_ENV=production webpack --config webpack.dev.js",
"build:types": "tsc -p tsconfig.declaration.json && mv dist/index.d.ts dist/react-smart-data-table.d.ts",
"build": "NODE_ENV=production webpack",
"clean": "rm -rf dist/",
"deploy": "gh-pages -d dist",
"dev": "yarn build:dev && yarn build:example-dev",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"_postinstall": "husky install",
"postpublish": "pinst --enable",
"prd": "yarn build && yarn build:example",
"prepublishOnly": "pinst --disable",
"pretty:fix": "prettier --write .",
"pretty": "prettier --check .",
"start": "NODE_ENV=development webpack serve --config webpack.dev.js",
"test": "jest",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaocarmo/react-smart-data-table.git"
},
"keywords": [
"configuration",
"data",
"react",
"simple",
"smart",
"table"
],
"author": "João Carmo",
"license": "MIT",
"bugs": {
"url": "https://github.com/joaocarmo/react-smart-data-table/issues"
},
"homepage": "https://github.com/joaocarmo/react-smart-data-table#readme",
"dependencies": {
"clsx": "^1.1.1",
"escape-string-regexp": "^5.0.0",
"flat": "^5.0.2",
"linkifyjs": "^3.0.5",
"prop-types": "^15.8.1",
"snake-case": "^3.0.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime": "^7.18.3",
"@testing-library/dom": "^8.14.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/flat": "^5.0.2",
"@types/jest": "^28.1.2",
"@types/linkifyjs": "^2.1.4",
"@types/node": "^18.0.0",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/testing-library__jest-dom": "^5.14.4",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@withshepherd/faker": "^5.5.5",
"babel-jest": "^28.1.1",
"babel-loader": "^8.2.5",
"core-js": "^3.23.2",
"css-loader": "^6.7.1",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.0.2",
"mini-css-extract-plugin": "^2.6.1",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.0",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"webpack-merge": "^5.8.0"
}
}