-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.43 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.43 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "esid",
"version": "0.0.1",
"description": "Visualization of infectious disease propagation.",
"type": "module",
"scripts": {
"build": "npm run collect-attributions && vite build",
"start": "vite serve",
"preview": "vite preview",
"build-and-preview": "npm run build && npm run preview",
"test": "vitest run --reporter=default --reporter=junit --outputFile=./reports/vitest-junit.xml",
"coverage": "vitest run --coverage",
"format": "prettier --write .",
"lint": "eslint --fix src",
"collect-attributions": "tsx tools/CollectAttributions.mts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DLR-SC/ESID.git"
},
"author": "German Aerospace Center (DLR)",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/DLR-SC/ESID/issues"
},
"homepage": "https://github.com/DLR-SC/ESID#readme",
"sideEffects": false,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@amcharts/amcharts5": "5.13.3",
"@dnd-kit/core": "6.3.1",
"@dnd-kit/modifiers": "9.0.0",
"@dnd-kit/sortable": "10.0.0",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.15.0",
"@mui/lab": "5.0.0-alpha.170",
"@mui/material": "5.15.0",
"@mui/system": "5.15.0",
"@mui/x-date-pickers": "6.20.0",
"@reduxjs/toolkit": "2.0.1",
"country-flag-icons": "1.5.9",
"dayjs": "1.11.10",
"i18next": "23.7.10",
"i18next-browser-languagedetector": "7.2.0",
"i18next-http-backend": "2.4.2",
"json5": "2.2.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "13.5.0",
"react-joyride": "2.8.2",
"react-lazyload": "github:twobin/react-lazyload",
"react-markdown": "9.0.1",
"react-oauth2-code-pkce": "1.18.0",
"react-redux": "9.0.4",
"react-scroll-sync": "0.11.2",
"redux": "5.0.0",
"redux-persist": "6.0.0",
"rehype-katex": "7.0.0",
"remark-math": "6.0.0",
"rooks": "7.14.1"
},
"devDependencies": {
"@types/geojson": "7946.0.13",
"@babel/eslint-parser": "7.23.10",
"@babel/preset-react": "7.23.3",
"@nabla/vite-plugin-eslint": "2.0.5",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/country-flag-icons": "1.2.2",
"@types/node-fetch": "2.6.9",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.17",
"@types/react-lazyload": "3.2.3",
"@types/react-redux": "7.1.33",
"@types/react-scroll-sync": "0.9.0",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"@vitejs/plugin-react": "4.4.1",
"@vitest/coverage-v8": "3.1.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-vitest": "0.3.26",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jsdom": "23.0.1",
"lint-staged": "15.2.0",
"msw": "2.2.9",
"node-fetch": "3.3.2",
"prettier": "3.1.1",
"sass": "1.69.5",
"tsx": "4.8.1",
"typescript": "5.3.3",
"unplugin-inject-preload": "2.0.0",
"vite": "6.3.5",
"vite-tsconfig-paths": "4.3.1",
"vitest": "3.1.3",
"vitest-canvas-mock": "0.3.3"
}
}