-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·87 lines (87 loc) · 3.62 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
86
87
{
"name": "bpmn-diff-bitbucket-plugin",
"version": "1.0.0",
"description": "Bitbucket Server plugin for BPMN file versions visual comparison during pull-requests",
"author": "Yaroslav Rudykh <[email protected]> (https://github.com/rudykh-yaroslav)",
"contributors": [],
"homepage": "https://github.com/domclick/bpmn-diff-bitbucket-plugin",
"repository": "https://github.com/domclick/bpmn-diff-bitbucket-plugin.git",
"bugs": "https://github.com/domclick/bpmn-diff-bitbucket-plugin/issues",
"license": "MIT",
"dependencies": {
"@atlaskit/button": "13.3.6",
"@atlassian/clientside-extensions": "^1.2.3",
"@atlassian/wrm-react-i18n": "0.4.5",
"axios": "^0.21.0",
"bpmn-js": "^7.5.0",
"bpmn-js-differ": "^2.0.2",
"bpmn-moddle": "^7.0.3",
"camunda-bpmn-moddle": "^4.5.0",
"dompurify": "^2.2.6",
"prop-types": "15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"styled-components": "3.4.10"
},
"devDependencies": {
"@atlassian/clientside-extensions-webpack-plugin": "^1.2.3",
"@atlassian/i18n-properties-loader": "0.7.3",
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "7.6.3",
"@testing-library/jest-dom": "4.2.3",
"atlassian-webresource-webpack-plugin": "^4.9.0",
"babel-eslint": "^10.1.0",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"css-loader": "2.1.0",
"duplicate-package-checker-webpack-plugin": "3.0.0",
"eslint": "6.6.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.5.0",
"eslint-import-resolver-webpack": "0.11.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"glob": "^7.1.6",
"jest": "24.9.0",
"less": "3.9.0",
"less-loader": "4.1.0",
"mini-css-extract-plugin": "0.5.0",
"network": "0.4.1",
"prettier": "1.18.2",
"react-hot-loader": "4.12.19",
"terser-webpack-plugin": "2.2.1",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "4.2.2"
},
"scripts": {
"watch": "webpack --watch --display-modules --config ./config/webpack.config.js",
"start": "atlas-package -DskipTests -Pwatch-mode && npm run dev-server ",
"build": "atlas-package -DskipTests",
"build:prod": "webpack --config ./config/webpack.resources.config.js && webpack --config ./config/webpack.config.js",
"build:dev": "webpack --config ./config/webpack.resources.config.js --mode=development && webpack --config ./config/webpack.config.js --mode=development",
"dev-server": "webpack --config ./config/webpack.resources.config.js --mode=development --env=dev-server && webpack-dev-server --config ./config/webpack.config.js --mode=development --env=dev-server",
"test": "jest --config ./config/jest/jest.config.js",
"test:watch": "jest --config ./config/jest/jest.config.js --watch",
"lint": "eslint './**/*.{js,jsx}'"
},
"browserslist": [
"last 1 version",
"IE 11"
],
"prettier": {
"tabWidth": 4,
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 100
}
}