File size: 2,072 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
  "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"
  }
}