-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.28 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.28 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
{
"name": "gams-engine-ui",
"version": "0.1.0",
"license": "MIT",
"private": true,
"proxy": "http://localhost:80",
"type": "module",
"devDependencies": {
"@babel/plugin-transform-private-property-in-object": "^7.28.6",
"@eslint/js": "^9.39.2",
"@peculiar/webcrypto": "^1.5.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.18",
"canvas": "^3.2.1",
"eslint": "^9.39.2",
"eslint-plugin-no-unsanitized": "^4.1.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.1.0",
"jsdom": "^27.4.0",
"react-select-event": "^5.5.1",
"sass": "^1.97.2",
"vite": "^7.3.1",
"vitest": "^4.0.17"
},
"dependencies": {
"axios": "^1.13.2",
"bootstrap": "^5.3.8",
"chart.js": "^4.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-zoom": "^2.2.0",
"date-fns": "^4.1.0",
"jszip": "^3.10.1",
"memoize": "^10.2.0",
"moment": "^2.30.1",
"react": "^19.2.3",
"react-bootstrap": "^2.10.10",
"react-chartjs-2": "^5.3.1",
"react-datepicker": "^9.1.0",
"react-dom": "^19.2.3",
"react-dropzone": "^14.3.8",
"react-feather": "^2.0.10",
"react-router-dom": "^7.12.0",
"react-select": "^5.10.2",
"react-spinners": "^0.17.0"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --reporter=default --reporter=junit --outputFile=junit.xml",
"lint": "eslint src --ext=\".js,.jsx\" --max-warnings 0",
"dev": "vite"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}