-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.64 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.64 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
{
"name": "batch-exploer",
"version": "0.0.1-SNAPSHOT",
"private": true,
"description": "Description for batch-explorer",
"license": "UNLICENSED",
"scripts": {
"clean-www": "rimraf build/resources/main/static/app/{src,build/}",
"start": "npm run webapp:dev",
"webapp:dev": "npm run webpack-dev-server -- --config webpack/webpack.dev.js",
"webpack-dev-server": "webpack serve",
"webapp:build:dev": "webpack --config webpack/webpack.dev.js",
"webapp:build": "npm run clean-www && npm run webapp:build:dev --",
"jest": "jest --coverage --logHeapUsage --maxWorkers=2 --config jest.conf.js"
},
"config": {},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@react-jvectormap/core": "^1.0.4",
"@react-jvectormap/world": "^1.1.2",
"@tabler/icons-react": "^3.30.0",
"@tanstack/react-table": "^8.21.2",
"apexcharts": "^4.1.0",
"axios": "0.27.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"formik": "^2.4.6",
"lucide-react": "^0.487.0",
"react": "18.2.0",
"react-apexcharts": "^1.7.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.3.5",
"react-flatpickr": "^3.10.13",
"react-helmet-async": "^2.0.5",
"react-loadable": "5.5.0",
"react-modal-promise": "^1.0.2",
"react-redux": "8.0.2",
"react-redux-loading-bar": "5.0.4",
"react-router-dom": "6.3.0",
"redux": "4.2.0",
"sockjs-client": "1.5.0",
"tailwind-merge": "^3.1.0",
"tw-animate-css": "^1.2.5",
"webstomp-client": "1.2.6",
"yup": "^1.6.1"
},
"devDependencies": {
"@reduxjs/toolkit": "1.8.5",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.0.6",
"@testing-library/react": "13.3.0",
"@types/jest": "28.1.8",
"@types/react": "^18.0.26",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.20",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "5.5.0",
"jest": "28.1.3",
"postcss": "^8.5.2",
"postcss-loader": "7.0.1",
"redux-mock-store": "1.5.4",
"sass": "1.54.8",
"sass-loader": "13.0.2",
"sinon": "14.0.0",
"style-loader": "3.3.1",
"tailwindcss": "^4.0.6",
"ts-jest": "28.0.8",
"ts-loader": "9.3.1",
"typescript": "4.8.2",
"webpack": "^5.98.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.10.1"
},
"engines": {
"node": ">=16.17.0"
},
"cacheDirectories": [
"node_modules"
]
}