react-spreadsheet
Version:
Simple, customizable yet performant spreadsheet for React
127 lines (126 loc) • 3.81 kB
JSON
{
"name": "react-spreadsheet",
"version": "0.10.1",
"description": "Simple, customizable yet performant spreadsheet for React",
"author": "Iddan Aaronsohn <mail@aniddan.com> (https://aniddan.com)",
"keywords": [
"spreadsheet",
"excel",
"react",
"sheet",
"table"
],
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint-typescript": "eslint .",
"lint-css": "stylelint '*/**.css'",
"lint": "run-s lint-typescript lint-css",
"check-format": "prettier --check .",
"format": "prettier --write .",
"test": "jest",
"test:coverage": "jest --coverage",
"build": "rollup -c",
"prepack": "cross-env NODE_ENV=production yarn build",
"check-typing": "tsc",
"build-typedoc": "typedoc",
"ci": "run-s check-format check-typing lint test:coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"scheduler": ">=0.19.0"
},
"dependencies": {
"array.prototype.flatmap": "^1.2.5",
"classnames": "^2.3.1",
"fast-formula-parser": "^1.0.19",
"use-context-selector": "^2.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@chromatic-com/storybook": "^3",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-webpack5": "^8.4.7",
"@storybook/test": "^8.4.7",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^16.1.0",
"@types/array.prototype.flatmap": "^1.2.2",
"@types/node": "^16.7.10",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-select": "^3.0.26",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"babel-eslint": "^10.0.0",
"cross-env": "^5.1.4",
"eslint": "^7.19.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-tsdoc": "^0.2.14",
"gh-pages": "^2.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-css": "^6.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-select": "^5.9.0",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-typescript2": "^0.35.0",
"scheduler": "^0.20.0",
"storybook": "^8.4.7",
"stylelint": "^16.12.0",
"stylelint-config-standard": "36.0.1",
"ts-jest": "^29.1.0",
"tslib": "^2.3.1",
"typedoc": "^0.23.28",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "4.9.5",
"webpack": "^5.97.1"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"dist"
],
"setupFilesAfterEnv": [
"<rootDir>/src/jest-setup.ts"
],
"transform": {
"^.+\\.css$": "jest-transform-css"
}
},
"resolutions": {
"wrap-ansi": "7.0.0",
"nwsapi": "2.2.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iddan/react-spreadsheet.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/iddan/react-spreadsheet/issues"
},
"homepage": "https://github.com/iddan/react-spreadsheet#readme"
}