-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 KB
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
{
"name": "@codifytools/react-text-editor",
"version": "1.0.6",
"description": "A small, simple and customizable text editor for React applications.",
"main": "dist/Editor.cjs.js",
"module": "dist/Editor.esm.js",
"scripts": {
"storybook": "start-storybook",
"build": "npm run clean && rollup -c",
"clean": "rimraf dist"
},
"keywords": [
"react",
"text",
"editor"
],
"author": "Juan Pablo Mejia",
"repository": {
"type": "git",
"url": "https://github.com/codifytools/react-text-editor"
},
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@storybook/react": "^6.5.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.75.4",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2"
}
}