-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.89 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.89 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
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
88
89
{
"name": "elsa",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack serve --progress --profile --mode development --host localhost --port 3310 --config webpack.dev.js",
"start:single": "webpack serve --config webpack.dev.single.js",
"start:plugin": "bash ./plugins/plugin.sh && npm run start",
"build:prod": "webpack --mode production --config webpack.prod.js",
"build:single": "webpack --mode production --config webpack.prod.single.js",
"build:plugin:prod": "bash ./plugins/plugin.sh prod",
"build:plugin:single": "bash ./plugins/plugin.sh prod spa"
},
"license": "ISC",
"devDependencies": {
"@ant-design/icons": "4.8.3",
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.24.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/node": "^20.12.12",
"@types/react": "^18.2.74",
"@types/react-dom": "^16.9.2",
"babel-loader": "^8.2.2",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-import": "^1.13.5",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^10.2.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "3.4.1",
"cssnano": "^5.1.15",
"eslint": "^7.32.0",
"file-loader": "^6.2.0",
"happypack": "^5.0.1",
"html-webpack-plugin": "^5.5.0",
"lodash": "4.17.21",
"marked": "4.3.0",
"mini-css-extract-plugin": "^1.2.1",
"postcss-import": "^14.0.0",
"postcss-loader": "^4.0.4",
"postcss-pxtorem": "^3.3.1",
"prettier": "3.2.5",
"rc-virtual-list": "^3.4.8",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.3.6",
"typescript": "^5.4.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.1",
"webpack": "5.89.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1",
"webpack-merge": "5.10.0",
"webpack-subresource-integrity": "5.1.0",
"single-spa-react": "6.0.1",
"ajv": "8.17.1"
},
"dependencies": {
"@fit-elsa/elsa-core": "file:../../../fit-framework/framework/elsa/fit-elsa",
"@fit-elsa/elsa-react": "file:../../../fit-framework/framework/elsa/fit-elsa-react",
"antd": "4.24.13",
"axios": "1.8.2",
"dayjs": "1.11.10",
"echarts": "5.4.3",
"echarts-for-react": "3.0.2",
"highlight.js": "11.9.0",
"i18next": "23.10.0",
"jszip": "3.10.1",
"less": "4.2.0",
"less-loader": "12.2.0",
"moment": "2.30.1",
"prop-types": "^15.7.2",
"qs": "6.11.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "12.1.4",
"react-redux": "8.1.3",
"react-router": "5.3.4",
"react-router-dom": "5.3.4",
"redux": "4.2.1",
"tinymce": "6.8.4",
"xss": "1.0.15"
}
}