grid-table
Version:
Custom react table based on typescript, grid and flex
99 lines (98 loc) • 3.32 kB
JSON
{
"name": "grid-table",
"main": "index.js",
"types": "index.d.ts",
"license": "ISC",
"author": "Evgeniy Volkov <afrow0w13@gmail.com>",
"version": "1.0.2",
"repository": {
"type": "git",
"url": "git@github.com:methodnumber13/grid-table.git"
},
"description": "Custom react table based on typescript, grid and flex",
"keywords": [
"grid",
"table",
"grid-table",
"react",
"typescript"
],
"peerDependencies": {
"react": "^16.13.1"
},
"scripts": {
"build": "npm run prebuild && npm run webpack && npm run lint && npm run prettier-format && npm run copycfg",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"webpack": "node node_modules/.bin/webpack --config ./webpack.config.js --progress --display-error-details",
"prettier-format": "prettier --config .prettierrc.json 'src/**/*.{ts,tsx}' --write",
"prebuild": "tsc -p ./tsconfig.json",
"copycfg": "cp package.json README.md lib"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,css}": [
"prettier --config .prettierrc.json 'src/**/*.{ts,tsx}' --write",
"git add",
"eslint 'src/**/*.{ts,tsx}'"
]
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/axios": "^0.14.0",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"babel-loader": "^8.1.0",
"compression-webpack-plugin": "^4.0.0",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.0.5",
"sass-loader": "^8.0.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.3",
"ts-loader": "^7.0.2",
"typescript": "~3.7.2",
"typings-for-css-modules-loader": "^1.7.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}