-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
171 lines (171 loc) · 5.22 KB
/
package.json
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "sheltr-v2",
"private": true,
"version": "0.6.4-beta",
"type": "module",
"engines": {
"node": ">=18.12.1",
"npm": ">=8.19.2"
},
"scripts": {
"dev": "vite",
"start:prod": "npx serve dist -s --single -l $PORT",
"build": "vite build",
"build:check": "tsc && vite build",
"build:staging": "vite build --mode staging",
"build:analyze": "vite build --mode analyze",
"postbuild": "",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "jest e2e",
"lint": "eslint . --ext .ts,.tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,md}\"",
"typecheck": "tsc --noEmit",
"clean": "rimraf node_modules/.cache dist .vite",
"clean:all": "rimraf node_modules/.cache dist .vite && npm cache clean --force && rimraf node_modules",
"validate": "npm-run-all --parallel typecheck lint format:check test",
"prepare": "npx husky install",
"precommit": "lint-staged && npm run typecheck",
"deploy:staging": "npm run validate && npm run build:staging",
"deploy:prod": "npm run validate && npm run build",
"docs:update": "node scripts/update-docs.js",
"docs:archive": "ts-node scripts/archive-docs.ts",
"docs:auto": "node scripts/auto-archive.js",
"version:bump": "node scripts/increment-version.js",
"export:structure": "./scripts/export-structure.sh"
},
"dependencies": {
"@eslint/js": "^9.18.0",
"@headlessui/react": "^1.7.19",
"@hookform/resolvers": "^3.9.1",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-toast": "^1.2.2",
"@sentry/react": "^7.0.0",
"@stripe/stripe-js": "^3.0.10",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/supabase-js": "^2.39.8",
"@tanstack/react-query": "^5.64.2",
"@tanstack/react-table": "^8.13.2",
"axios": "^1.7.9",
"chart.js": "^4.4.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.0",
"date-fns": "^3.3.1",
"framer-motion": "^11.13.1",
"globals": "^15.14.0",
"gray-matter": "^4.0.3",
"html5-qrcode": "^2.3.8",
"i18next": "^23.10.1",
"i18next-browser-languagedetector": "^7.2.1",
"leaflet": "^1.9.4",
"lucide-react": "^0.473.0",
"mapbox-gl": "^3.8.0",
"marked": "^15.0.4",
"mermaid": "^11.4.1",
"nanoid": "^5.0.9",
"qrcode": "^1.5.4",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.12",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.54.0",
"react-hot-toast": "^2.5.1",
"react-i18next": "^14.1.3",
"react-leaflet": "^4.2.1",
"react-markdown": "^9.0.3",
"react-router-dom": "^6.22.3",
"react-scroll": "^1.9.0",
"recharts": "^2.15.0",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"remark-mermaid": "^0.2.0",
"remark-parse": "^11.0.0",
"tailwind-merge": "^2.2.1",
"typescript-eslint": "^8.21.0",
"unified": "^11.0.5",
"zod": "^3.24.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@mdx-js/rollup": "^3.1.0",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/geojson": "^7946.0.15",
"@types/hast": "^3.0.4",
"@types/leaflet": "^1.9.8",
"@types/mdast": "^4.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "^22.10.1",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.2",
"@types/recharts": "^1.8.29",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.18",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"glob": "^10.3.10",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.0.0",
"lighthouse": "^11.7.1",
"lint-staged": "^15.2.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vite": "^5.0.0",
"vitest": "^1.2.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.ts"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"overrides": {
"@testing-library/react-hooks": {
"react": "^18.0.0",
"react-test-renderer": "^18.0.0"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md}": "prettier --write"
}
}