-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "giessdenkiez-de",
"private": true,
"version": "3.0.0-beta.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint \"src/**/*\"",
"prettier": "prettier --write .",
"prettier:ci": "prettier --check .",
"preview": "vite preview",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run --config ./tests/unit/vitest.config.ts",
"test:e2e": "playwright test --config=tests/e2e/playwright.config.ts"
},
"dependencies": {
"@supabase/supabase-js": "2.45.4",
"@types/d3": "7.4.3",
"d3": "7.9.0",
"d3-contour": "4.0.2",
"date-fns": "4.1.0",
"mapbox-gl": "3.7.0",
"react": "18.3.1",
"react-card-flip": "1.2.3",
"react-dom": "18.3.1",
"react-markdown": "9.0.1",
"react-share": "5.1.0",
"zustand": "4.5.5"
},
"devDependencies": {
"@playwright/test": "1.47.2",
"@saithodev/semantic-release-backmerge": "4.0.1",
"@technologiestiftung/eslint-config": "0.3.1",
"@technologiestiftung/prettier-config": "1.0.0",
"@technologiestiftung/semantic-release-config": "1.2.4",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "8.9.0",
"@typescript-eslint/parser": "8.9.0",
"@vitejs/plugin-react": "4.3.2",
"autoprefixer": "10.4.20",
"dotenv": "16.4.5",
"eslint": "9.12.0",
"eslint-plugin-react": "7.37.1",
"globals": "15.11.0",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"semantic-release": "24.1.2",
"tailwindcss": "3.4.13",
"typescript": "5.6.2",
"vite": "5.4.8",
"vitest": "2.1.3"
}
}