-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.32 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.32 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
{
"name": "ferry-map",
"description": "A map of San Francisco Passenger Ferry realtime locations for all agencies and companies using AIS data",
"keywords": [
"transit",
"ais",
"transportation"
],
"bugs": {
"url": "https://github.com/blinktaginc/ferry-map/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/blinktaginc/ferry-map.git"
},
"license": "MIT",
"author": "Brendan Nee <brendan@blinktag.com>",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky"
},
"dependencies": {
"lodash": "^4.17.23",
"luxon": "^3.7.2",
"maplibre-gl": "^5.20.2",
"next": "16.1.7",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-map-gl": "^8.1.0"
},
"devDependencies": {
"@types/node": "25.5.0",
"@types/react": "19.2.14",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"typescript": "5.9.3"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"lint-staged": {
"*.js": "prettier --write",
"*.ts": "prettier --write",
"*.tsx": "prettier --write",
"*.jsx": "prettier --write",
"*.json": "prettier --write",
"*.{js,css,md}": "prettier --write"
},
"packageManager": "pnpm@10.32.1"
}