-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.16 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.16 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
{
"name": "strudel-example-berkeley-explorer",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"homepage": "",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"deploy": "gh-pages -d dist -e demo",
"style:all": "tsc && npm run lint && npm run prettier",
"lint": "eslint .",
"lint:fix": "eslint . --fix '**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier . --check '**/*.{js,jsx,ts,tsx}'",
"prettier:fix": "prettier . --write '**/*.{js,jsx,ts,tsx}'",
"prepare": "cd ../ && husky ./strudel-taskflows/.husky",
"type-check": "tsc --noEmit",
"check": "npm run type-check && npm run lint",
"test": "vitest"
},
"dependencies": {
"@deck.gl/aggregation-layers": "^9.1.12",
"@deck.gl/core": "^9.1.12",
"@deck.gl/geo-layers": "^9.1.12",
"@deck.gl/layers": "^9.1.12",
"@deck.gl/react": "^9.1.12",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@generouted/react-router": "^1.19.3",
"@mui/icons-material": "^5.15.14",
"@mui/lab": "^5.0.0-alpha.169",
"@mui/material": "^5.15.14",
"@mui/x-data-grid": "^7.0.0",
"@mui/x-date-pickers": "^7.0.0",
"@tanstack/react-query": "^5.51.23",
"@types/axios": "^0.9.36",
"@types/leaflet": "^1.9.17",
"@vitejs/plugin-react": "^4.3.4",
"antd": "^5.24.5",
"axios": "^1.8.3",
"clsx": "^2.1.1",
"csv-parser": "^3.2.0",
"d3-fetch": "^3.0.1",
"dayjs": "^1.11.10",
"dexie": "^4.0.11",
"leaflet": "^1.9.4",
"lucide-react": "^0.485.0",
"mapbox-gl": "^1.13.3",
"plotly.js": "^2.30.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-map-gl": "^6.1.21",
"react-plotly.js": "^2.6.0",
"react-router-dom": "^6.22.3",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/d3-fetch": "^3.0.7",
"@types/express": "^5.0.1",
"@types/jsdom": "^21.1.7",
"@types/leaflet.markercluster": "^1.5.5",
"@types/node": "^20.12.12",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/react-plotly.js": "^2.6.3",
"@types/testing-library__jest-dom": "^5.14.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"csv-writer": "^1.6.0",
"cypress": "^13.15.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"gh-pages": "^6.1.1",
"http-proxy-middleware": "^3.0.3",
"husky": "^9.1.6",
"jsdom": "^26.0.0",
"leaflet.markercluster": "^1.5.3",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2",
"vitest": "^1.6.0"
},
"engines": {
"node": "^18.18.0 || >=20.0.0"
}
}