-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "camunda-modeler-i18n-plugin",
"version": "2.0.0",
"description": "This plugin for the Camunda Modeler allows to translate the strings used in the UI. It contains German, English and Portuguese and can easily be extended and customized.",
"author": "FlowSquad GmbH <info@flowsquad.io>",
"homepage": "https://github.com/FlowSquad/camunda-modeler-i18n-plugin",
"bugs": {
"url": "https://github.com/FlowSquad/camunda-modeler-i18n-plugin/issues"
},
"license": "Apache-2.0",
"files": [
"dist",
"menu",
"index.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "ssh://git@github.com/FlowSquad/camunda-modeler-i18n-plugin.git"
},
"scripts": {
"build": "run-s bundle",
"all": "run-s bundle",
"bundle": "webpack",
"dev": "webpack -w",
"prepublishOnly": "run-s bundle",
"local": "npm run bundle && copyfiles dist/**/*.* index.js menu/**/*.* '{PATH_TO_CAMUNDA_MODELER}/plugins/i18n'"
},
"keywords": [
"camunda",
"modeler",
"plugin",
"i18n"
],
"dependencies": {
"copyfiles": "^2.4.1",
"ids": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-select": "^5.7.0"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.2.2",
"camunda-modeler-plugin-helpers": "^5.1.0",
"install": "^0.13.0",
"npm-run-all": "^4.1.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}