-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"private": true,
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"start": "vite --host",
"build": "tsc --noEmit && vite build",
"preview": "vite preview --host",
"test": "vitest --coverage",
"e2e": "playwright test",
"lint": "biome check",
"lint:fix": "biome check --fix --unsafe"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.0",
"@turf/turf": "^7.0.0",
"classnames": "^2.0.0",
"jotai": "^2.0.0",
"mapbox-gl": "~3.9.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-map-gl": "^7.0.0",
"tailwindcss": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "~1.9.0",
"@playwright/test": "~1.49.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@tsconfig/strictest": "^2.0.0",
"@tsconfig/vite-react": "^3.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/browser": "^2.0.0",
"@vitest/coverage-istanbul": "^2.0.0",
"autoprefixer": "^10.0.0",
"dotenv": "^16.0.0",
"globals": "^15.0.0",
"playwright": "~1.49.0",
"postcss": "^8.0.0",
"tslib": "^2.0.0",
"typescript": "~5.7.0",
"typescript-eslint": "^8.0.0",
"vite": "^6.0.0",
"vitest": "^2.0.0"
}
}