| { | |
| "name": "@react-page/editor", | |
| "version": "0.0.0", | |
| "author": "Marco Wettstein", | |
| "license": "MIT", | |
| "main": "./lib/index.js", | |
| "module": "./lib-es/index.js", | |
| "sideEffects": false, | |
| "typings": "./lib/index.d.ts", | |
| "repository": { | |
| "url": "https://github.com/react-page/react-page" | |
| }, | |
| "scripts": { | |
| "build": "npm-run-all --parallel build:lib build:css", | |
| "build:watch": "npm-run-all --parallel build:lib:watch build:css:watch", | |
| "build:lib": "tsc -p ./tsconfig.json && tsc -p ./tsconfig-es.json", | |
| "build:lib:watch": "yarn build:lib -- --watch", | |
| "build:css": "postcss --config ../../config/postcss.config.js --dir lib/ src/index.css", | |
| "build:css:watch": "npm-run-all build:css -- -w", | |
| "docs": "documentation build ./lib/**/*.js --format md --github -o ../../docs/api/editor.md", | |
| "clean": "rimraf \"lib\" && rimraf \"lib-es\" && rm -f *.tsbuildinfo" | |
| }, | |
| "peerDependencies": { | |
| "react": ">= 16.14", | |
| "react-dom": ">= 16.14" | |
| }, | |
| "dependencies": { | |
| "@mui/icons-material": "^5.8.0", | |
| "@mui/material": "^5.8.1", | |
| "@welldone-software/why-did-you-render": "^7.0.1", | |
| "ajv": "^7.1.1", | |
| "classnames": "^2.3.1", | |
| "color-parse": "^1.4.2", | |
| "fast-deep-equal": "^3.1.3", | |
| "invariant": "^2.0.0", | |
| "is-hotkey": "~0.2.0", | |
| "lodash.debounce": "^4.0.8", | |
| "lodash.flatten": "^4.4.0", | |
| "lodash.throttle": "^4.1.1", | |
| "react-color": "^2.19.3", | |
| "react-dnd": "^15.1.2", | |
| "react-dnd-html5-backend": "^15.1.2", | |
| "react-draggable": "4.4.5", | |
| "react-lazy-with-preload": "^2.2.1", | |
| "react-portal": "^4.2.2", | |
| "react-redux": "^7.2.3", | |
| "react-use": "^17.4.0", | |
| "redux": "^4.0.5", | |
| "redux-thunk": "^2.3.0", | |
| "redux-undo": "^1.0.1", | |
| "tslib": "^2.2.0", | |
| "uniforms": "^2.6.0 || ^3.0.0", | |
| "uniforms-bridge-json-schema": "^2.6.0 || ^3.0.0" | |
| }, | |
| "devDependencies": { | |
| "@types/invariant": "^2.2.35", | |
| "@types/lodash.throttle": "^4.1.6", | |
| "@types/react-color": "^3.0.4", | |
| "@types/react-portal": "^4.0.4" | |
| }, | |
| "publishConfig": { | |
| "access": "public" | |
| } | |
| } | |