-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.12 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
{
"name": "gams-engine-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage",
"test:ci": "vitest --run --coverage --reporter=default --reporter=junit --outputFile=junit.xml",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --max-warnings 0 ./src"
},
"dependencies": {
"@mantine/core": "^9.3.2",
"@mantine/dates": "^9.3.2",
"axios": "^1.18.0",
"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.4.0",
"dayjs": "^1.11.21",
"jszip": "^3.10.1",
"memoize": "^10.2.0",
"moment": "^2.30.1",
"react": "^19.2.7",
"react-bootstrap": "^2.10.10",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.7",
"react-dropzone": "^14.4.1",
"react-feather": "^2.0.10",
"react-router-dom": "^7.18.0",
"react-select": "^5.10.2",
"react-spinners": "^0.17.0"
},
"devDependencies": {
"@babel/plugin-transform-private-property-in-object": "^7.29.7",
"@eslint/js": "^9.39.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.4",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.9",
"canvas": "^3.2.3",
"eslint": "^9.39.4",
"eslint-plugin-no-unsanitized": "^4.1.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.4",
"react-select-event": "^5.5.1",
"sass": "^1.101.0",
"vite": "^8.0.16",
"vitest": "^4.1.9",
"vitest-canvas-mock": "^1.1.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}