forked from jodit/jodit-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.8 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
{
"name": "@quirons/quirons-jodit",
"version": "1.0.72",
"description": "Copy of React Jodit Editor library for adaptations",
"main": "build/jodit-react.js",
"author": "Wagner Esser <[email protected]> (https://ngi.com.br/)",
"keywords": [
"react",
"jodit",
"html",
"text",
"editor",
"wysisyg",
"rich editor",
"rich text editor",
"rte"
],
"dependencies": {
"@quirons/jodit": "3.4.29"
},
"peerDependencies": {
"react": "~0.14 || ^15.0.0 || ^16.0.0",
"react-dom": "~0.14 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/preset-env": "^7.12.0",
"@babel/preset-react": "^7.10.4",
"@types/react": "^16.9.52",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^3.6.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"style-loader": "^0.20.3",
"typescript": "3.8.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"newversion": "npm update && rm -rf build/ && npm run build && npm version patch --no-git-tag-version && npm run github && npm publish ./",
"demo": "cd examples && export NODE_ENV=development && webpack-dev-server --config ./webpack.config.js --mode development --port 4000 --hot --inline",
"build": "export NODE_ENV=production && webpack --mode production",
"github": "git add --all && git commit -m \"New version $npm_package_version. Read more https://github.com/jodit/jodit-react/releases/tag/$npm_package_version \" && git tag $npm_package_version && git push --tags origin HEAD:master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nginformatica/jodit-react.git"
}
}