forked from StreetSupport/streetsupport-platform-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.codexrc.json
More file actions
34 lines (34 loc) · 905 Bytes
/
.codexrc.json
File metadata and controls
34 lines (34 loc) · 905 Bytes
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
{
"name": "streetsupport-platform-web",
"description": "Public-facing website for Street Support Network. Helps users find support services and allows partners to manage their listings.",
"language": "TypeScript",
"framework": "Next.js",
"reactVersion": "18.3.1",
"nextVersion": "15.3.2",
"tailwind": true,
"testing": {
"unit": "jest",
"e2e": "playwright",
"mocks": ["__mocks__/leaflet.js", "__mocks__/react-leaflet.tsx"]
},
"ci": {
"provider": "github-actions",
"workflows": ["unit.yml", "e2e.yml"]
},
"env": {
"GOOGLE_MAPS_API_KEY": "required",
"NEXT_PUBLIC_ENV": "optional"
},
"features": {
"geolocation": true,
"map-view": true,
"cms-integration": "in progress",
"virtual-assistant": "planned"
},
"paths": {
"components": "src/components",
"data": "src/data",
"pages": "src/pages",
"types": "src/types"
}
}