UNPKG

react-form-builder2

Version:
108 lines (107 loc) 3.37 kB
{ "name": "react-form-builder2", "version": "0.20.3", "description": "A complete form builder for react.", "main": "lib/index.js", "types": "types/index.d.ts", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Kiho/react-form-builder.git" }, "files": [ "lib", "dist", "types" ], "keywords": [ "react", "react-component", "form", "builder", "ui", "drag", "drop" ], "engines": { "node": ">=18.0.0" }, "author": "Kiho Chang", "dependencies": { "beedle": "^0.8.1", "classnames": "^2.2.6", "date-fns": "^2.16.1", "draft-js": "^0.11.7", "draftjs-to-html": "^0.8.4", "es6-promise": "^4.2.8", "fbemitter": "^3.0.0", "file-saver": "^2.0.5", "immutability-helper": "^3.1.1", "isomorphic-fetch": "^3.0.0", "prop-types": "^15.7.2", "react-bootstrap-slider": "^3.0.0", "react-datepicker": "^8.3.0", "react-dnd": "^16.0.1", "react-dnd-html5-backend": "^16.0.1", "react-draft-wysiwyg": "^1.15.0", "react-intl": "^7.1.11", "react-select": "^5.10.1", "react-signature-canvas": "^1.1.0-alpha.2", "react-textarea-autosize": "^8.5.9", "xss": "^1.0.8" }, "peerDependencies": { "react": ">=18.3.1", "react-dom": ">=18.3.1" }, "devDependencies": { "@babel/cli": "^7.12.10", "@babel/core": "^7.12.10", "@babel/plugin-proposal-class-properties": "^7.12.1", "@babel/plugin-proposal-json-strings": "^7.12.1", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-transform-runtime": "^7.17.10", "@babel/preset-env": "^7.12.11", "@babel/preset-react": "^7.14.5", "@babel/runtime-corejs2": "^7.12.5", "add": "^2.0.6", "babel-eslint": "^10.1.0", "babel-loader": "^8.2.2", "copyfiles": "^2.4.1", "css-loader": "^3.6.0", "ejs": "^2.7.4", "eslint": "^6.8.0", "eslint-config-airbnb": "^18.2.1", "eslint-plugin-import": "^2.22.1", "eslint-plugin-jsx-a11y": "^6.4.1", "eslint-plugin-react": "^7.22.0", "express": "^4.17.1", "multer": "^1.4.2", "react": "^18.3.1", "react-dom": "^18.3.1", "rimraf": "^3.0.2", "sass": "^1.88.0", "sass-loader": "^16.0.5", "style-loader": "^4.0.0", "webpack": "^5.99.8", "webpack-cli": "^6.0.1", "webpack-dev-server": "^5.2.1" }, "scripts": { "build": "webpack --mode production --config webpack.production.config.js", "build:dev": "webpack --mode development", "build:umd": "webpack --mode development --config webpack.production.config.js", "build:style": "sass ./scss/application.scss dist/app.css --style compressed", "build:lib": "npm run transpile && npm run build:style", "build:dist": "npm run build && npm run copy:dist", "clean": "rimraf dist", "copy:dist": "copyfiles -f \"./dist/*\" \"./public/dist\"", "prepublishOnly": "npm run clean && NODE_OPTIONS=--openssl-legacy-provider npm run build:lib && NODE_OPTIONS=--openssl-legacy-provider npm run build", "watch": "webpack --watch", "start": "NODE_OPTIONS=--openssl-legacy-provider && webpack-dev-server --hot --mode development", "serve:api": "node server/index.js", "pretranspile": "rimraf lib", "transpile": "babel --out-dir lib src --copy-files" } }