UNPKG

react-modern-gantt

Version:

A modern, customizable Gantt chart component for React applications

106 lines (105 loc) 3.11 kB
{ "name": "react-modern-gantt", "version": "0.5.2", "description": "A modern, customizable Gantt chart component for React applications", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "type": "module", "files": [ "dist" ], "scripts": { "build": "rollup -c", "dev": "rollup -c -w", "start": "npm run dev & npm run start:example", "start:example": "cd example && npm start", "lint": "eslint src --ext .ts,.tsx", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "prepare": "npm run build" }, "keywords": [ "react", "gantt", "chart", "timeline", "project-management", "scheduler", "planning", "roadmap" ], "author": "Mika Stiebitz", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/MikaStiebitz/React-Modern-Gantt/" }, "peerDependencies": { "react": "^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0", "typescript": "^4.0.0 || ^5.0.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^28.0.3", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^12.1.2", "@rollup/pluginutils": "^5.1.4", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.2.0", "@testing-library/user-event": "^14.6.1", "@types/jest": "^29.5.14", "@types/react": "^19.0.12", "@types/react-dom": "^19.0.4", "@typescript-eslint/eslint-plugin": "^8.27.0", "@typescript-eslint/parser": "^8.27.0", "autoprefixer": "^10.4.21", "eslint": "^9.23.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-prettier": "^5.2.3", "eslint-plugin-react": "^7.37.4", "eslint-plugin-react-hooks": "^5.2.0", "identity-obj-proxy": "^3.0.0", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "postcss": "^8.5.3", "prettier": "^3.5.3", "rollup": "^4.36.0", "rollup-plugin-peer-deps-external": "^2.2.4", "rollup-plugin-postcss": "^4.0.2", "ts-jest": "^29.2.6", "ts-node": "^10.9.2", "tslib": "^2.8.1", "typescript": "^5.8.2" }, "dependencies": { "date-fns": "^4.1.0" }, "overrides": { "@testing-library/react": { "react": "^19.0.0", "react-dom": "^19.0.0" } }, "sideEffects": [ "*.css", "./styles/gantt.css" ], "exports": { ".": { "import": "./dist/index.esm.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" }, "./dist/index.css": "./dist/index.css" }, "typesVersions": { "*": { "*": [ "dist/index.d.ts" ] } } }