-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.98 KB
/
package.json
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
66
67
68
69
70
71
72
{
"name": "@spadgeaki/block-editor",
"version": "1.1.12",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"license": "MIT",
"scripts": {
"dev": "yarn clean && rollup --config --environment NODE_ENV:production -w",
"build": "yarn clean && rollup --config --environment NODE_ENV:production",
"clean": "rimraf dist/"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.3"
},
"dependencies": {
"@react-hook/resize-observer": "^1.2.4",
"@rollup/plugin-typescript": "^8.2.3",
"@types/debug": "^4.1.7",
"clsx": "^1.1.1",
"daisyui": "^1.10.0",
"debug": "^4.3.3",
"deep-copy": "^1.4.2",
"flat": "^5.0.2",
"html-to-image": "^1.9.0",
"immer": "^9.0.5",
"lodash": "^4.17.21",
"nanoid": "^3.1.23",
"react-admin": "^3.19.0",
"react-beautiful-dnd": "^13.1.0",
"react-error-boundary": "^3.1.3",
"react-fast-compare": "^3.2.0",
"react-final-form": "^6.5.7",
"react-hotkeys-hook": "^3.4.0",
"react-rnd": "^10.3.5",
"zustand": "^3.5.7"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.4",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/quill": "^2.0.9",
"@types/react": "^17.0.15",
"@types/react-beautiful-dnd": "^13.1.1",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.3.1",
"postcss": "^8.3.6",
"postcss-nested": "^5.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.55.0",
"rollup-plugin-execute": "^1.1.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.5",
"vite": "^2.4.4"
}
}