-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 3.22 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "plugin-drawio-editors",
"displayName": "Draw.io: various editors plugin",
"description": "Various embedded editors plugin for Draw.io Desktop (Swagger, AsyncAPI, BPMN, Markdown, HTML,...)",
"version": "0.0.0",
"license": "GPL-3.0",
"publisher": "rpeyron",
"repository": "https://github.com/rpeyron/plugin-drawio-editors",
"readme": "./README.md",
"scripts": {
"webpack:production": "webpack --mode production",
"webpack:development": "webpack --mode development",
"build": "npm run webpack:production",
"dev": "npm run webpack:development",
"dev-win": "npm run dev && copy /Y dist\\*-plugin.webpack.js %AppData%\\draw.io\\plugins && ..\\drawio-desktop\\node_modules\\.bin\\electron.cmd ..\\drawio-desktop\\",
"release-win": "npm run build && copy /Y dist\\*-plugin.webpack.js %AppData%\\draw.io\\plugins && ..\\drawio-desktop\\node_modules\\.bin\\electron.cmd ..\\drawio-desktop\\",
"webpack-stats": "webpack --json > stats.json",
"copy-plugin": "copy /y dist\\*-plugin.webpack.js %appdata%\\draw.io\\plugins\\",
"run-drawio": "..\\draw.io-20.3.0-windows-no-installer.exe --args --enable-plugins",
"maj-dev": "npm run dev && npm run copy-plugin && npm run run-drawio"
},
"dependencies": {
"@asyncapi/react-component": "^0.24.23",
"@bpmn-io/properties-panel": "^2.2.0",
"@editorjs/editorjs": "^2.22.2",
"@fortawesome/fontawesome-free": "^5.15.4",
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-brands-svg-icons": "^5.10.2",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@tiptap/core": "^2.0.0-beta.130",
"@tiptap/starter-kit": "^2.0.0-beta.132",
"assert": "^2.0.0",
"bpmn-js": "^13.2.0",
"bpmn-js-properties-panel": "^2.1.0",
"browserify-fs": "^1.0.0",
"clear-module": "^4.1.1",
"codemirror": "^5.58.2",
"deepmerge": "^4.2.2",
"http-browserify": "^1.7.0",
"https-browserify": "^1.0.0",
"json-schema-editor-visual": "^2.0.0",
"node-polyfill-webpack-plugin": "^1.1.0",
"path-browserify": "^1.0.1",
"quill": "^1.3.7",
"re-resizable": "^6.0.0",
"react": "^16.14.0",
"react-codemirror2": "^6.0.0",
"react-dom": "^16.14.0",
"react-split": "^2.0.14",
"rich-markdown-editor": "^11.21.3",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"styled-components": "^5.2.3",
"svg-inline-loader": "^0.8.2",
"swagger-editor": "^3.15.11",
"swagger-ui": "^3.46.0",
"tiny-editor": "^0.2.5",
"url-loader": "^4.1.1",
"util": "^0.12.4"
},
"devDependencies": {
"@typed-mxgraph/typed-mxgraph": "^1.0.1",
"@types/codemirror": "0.0.76",
"@types/jest": "24.0.18",
"@types/node": "12.7.2",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"@types/styled-components": "^4.1.18",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^5.2.0",
"html-loader": "^3.0.0",
"process": "^0.11.10",
"raw-loader": "^4.0.2",
"react-app-rewired": "^2.1.3",
"react-scripts": "5.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^5.1.3",
"webpack-cli": "^4.0.0"
}
}