-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.26 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
{
"name": "adr1d-explorer",
"private": true,
"version": "1.0.0",
"description": "Bilingual interactive visualization of validated ADR1D reactive-transport simulations.",
"type": "module",
"license": "MIT",
"author": "Gerardo Tinoco-Guerrero, Francisco J. Domínguez-Mota, and J. Alberto Guzmán-Torres",
"repository": {
"type": "git",
"url": "https://github.com/gstinoco/ADR1D-Explorer.git"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "vite",
"validate:data": "node scripts/validate-public-dataset.mjs",
"verify": "npm run validate:data && npm test && npm run build",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run"
},
"dependencies": {
"echarts": "^6.0.0",
"echarts-for-react": "^3.0.5",
"lucide-react": "^0.468.0",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@vitejs/plugin-react": "^5.0.2",
"axe-core": "^4.12.1",
"jsdom": "^26.1.0",
"vite": "^7.1.3",
"vitest": "^3.2.4"
},
"keywords": [
"reactive transport",
"scientific visualization",
"finite volume",
"machine learning",
"environmental modeling"
]
}