isoflow/package.json

96 lines
2.8 KiB
JSON
Raw Normal View History

2023-03-08 20:29:13 +00:00
{
"name": "isoflow",
2023-07-20 15:46:37 +00:00
"version": "0.3.31",
2023-03-16 21:27:09 +00:00
"private": false,
2023-03-23 22:50:12 +00:00
"description": "A highly customizable React component for building interactive flow diagrams.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/markmanx/isoflow.git"
},
2023-03-16 21:27:09 +00:00
"main": "./dist/index.js",
2023-03-23 20:59:59 +00:00
"types": "./dist/App.d.ts",
2023-03-24 23:32:36 +00:00
"scripts": {
"start": "webpack serve --config ./webpack/dev.config.js",
"dev": "nodemon --watch ./src/ -e ts,tsx --exec npm run build",
"build": "webpack --config ./webpack/prod.config.js && tsc --declaration --emitDeclarationOnly",
"test": "jest",
"lint": "eslint ./src/**/*.{ts,tsx}",
"lint:fix": "eslint --fix ./src/**/*.{ts,tsx}"
2023-03-24 23:32:36 +00:00
},
2023-03-08 20:29:13 +00:00
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/chroma-js": "^2.4.0",
2023-03-28 22:09:59 +00:00
"@types/deep-diff": "^1.0.2",
2023-03-08 20:29:13 +00:00
"@types/jest": "^27.5.2",
"@types/jsdom": "^21.1.0",
2023-03-08 20:29:13 +00:00
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/uuid": "^9.0.2",
2023-03-24 23:32:36 +00:00
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^6.0.0",
2023-03-23 20:59:59 +00:00
"concurrently": "^7.6.0",
2023-07-12 11:16:52 +00:00
"css-loader": "^6.8.1",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
2023-03-24 23:32:36 +00:00
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^21.1.1",
2023-07-20 15:54:00 +00:00
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
2023-03-16 21:27:09 +00:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2023-07-12 11:16:52 +00:00
"style-loader": "^3.3.3",
"ts-jest": "^29.0.5",
2023-03-16 21:27:09 +00:00
"ts-loader": "^9.4.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.1.6",
2023-03-16 21:27:09 +00:00
"webpack": "^5.76.2",
2023-03-24 23:32:36 +00:00
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
2023-03-16 21:27:09 +00:00
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.10",
2023-03-08 20:29:13 +00:00
"auto-bind": "^5.0.1",
"chroma-js": "^2.4.2",
2023-03-28 22:09:59 +00:00
"deep-diff": "^1.0.2",
2023-03-08 20:29:13 +00:00
"gsap": "^3.11.4",
"immer": "^10.0.2",
2023-03-08 20:29:13 +00:00
"paper": "^0.12.17",
"react-hook-form": "^7.43.2",
2023-07-12 11:16:52 +00:00
"react-quill": "^2.0.0",
2023-03-08 20:29:13 +00:00
"react-router-dom": "^6.8.1",
"uuid": "^9.0.0",
2023-03-08 20:29:13 +00:00
"zod": "^3.20.6",
"zustand": "^4.3.3"
},
"peerDependencies": {
2023-03-16 21:27:09 +00:00
"react": ">=17",
"react-dom": ">=17"
2023-03-08 20:29:13 +00:00
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}