-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.76 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.76 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
{
"name": "tulipa.energy.visualizer",
"private": true,
"version": "1.0.0",
"type": "module",
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:test": "cargo llvm-cov --workspace --cobertura --output-path cargo-coverage.xml --manifest-path src-tauri/Cargo.toml",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:coverage:ui": "vitest run --coverage && (xdg-open coverage/index.html || open coverage/index.html || start coverage/index.html)",
"test:coverage:watch": "vitest --coverage --watch",
"test:coverage:clean": "rm -rf coverage",
"format": "npx prettier . --write --end-of-line auto",
"clean": "git clean -f -X .",
"analyze": "node code-analysis/analyze.js && (xdg-open analysis-reports/index.html || open analysis-reports/index.html || start analysis-reports/index.html)",
"analyze:setup": "bash ./code-analysis/setup-analysis.sh"
},
"dependencies": {
"@mantine/core": "^8.0.1",
"@mantine/dates": "^8.0.1",
"@mantine/hooks": "^8.0.1",
"@tabler/icons-react": "^3.31.0",
"@tauri-apps/api": "^2.5.0",
"@tauri-apps/plugin-dialog": "^2.2.1",
"@tauri-apps/plugin-fs": "^2.3.0",
"@tauri-apps/plugin-opener": "^2",
"@types/react-datepicker": "^6.2.0",
"apache-arrow": "^19.0.1",
"dayjs": "^1.11.13",
"echarts": "^5.6.0",
"echarts-for-react": "^3.0.2",
"lru-cache": "^11.1.0",
"primereact": "^10.9.6",
"react": "^18.3.1",
"react-datepicker": "^8.3.0",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"zustand": "^5.0.4"
},
"devDependencies": {
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.29.0",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/lodash": "^4.17.17",
"@types/node": "^22.15.17",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.1.4",
"eslint-plugin-complexity": "^1.0.2",
"eslint-plugin-react": "^7.37.5",
"eslintcc": "^0.8.3",
"glob": "^11.0.3",
"globals": "^16.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"prettier": "3.6.0",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.4"
}
}