-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.92 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.92 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
{
"name": "fishfrymap",
"version": "3.0.0",
"description": "Pittsburgh Lenten Fish Fry Map",
"main": "index.html",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@reduxjs/toolkit": "^2.5.0",
"@unchartedsoftware/leaflet.zoomhome": "git+https://github.com/gassc/leaflet.zoomhome.git#dc2618f7dcac00f60cb664802ed3e02dcbc62d26",
"bootstrap": "^5.3.3",
"bootswatch": "^5.3.8",
"leaflet": "1.6",
"leaflet-basemaps": "^0.2.3",
"leaflet-groupedlayercontrol": "^0.6.0",
"leaflet.locatecontrol": "^0.62.0",
"leaflet.markercluster": "^1.3.0",
"leafletgeojsonfilter": "^0.1.1",
"moment": "^2.21.0",
"react": "^18.3.1",
"react-bootstrap": "^2.10.9",
"react-dom": "^18.3.1",
"react-redux": "^9.2.0"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@vitejs/plugin-react": "^4.3.4",
"vite": "^6.1.1",
"vitest": "^3.0.5",
"gh-pages": "^6.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:parity": "playwright test",
"test": "npm run test:unit && npm run test:parity",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeForPittsburgh/fishfrymap.git"
},
"keywords": [
"leaflet",
"map",
"fishfry",
"pittsburgh"
],
"author": "Christian Gass",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodeForPittsburgh/fishfrymap/issues"
},
"homepage": "https://github.com/CodeForPittsburgh/fishfrymap#readme"
}