-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.29 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
{
"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.21",
"luxon": "^3.5.0",
"maplibre-gl": "^4.7.1",
"next": "15.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-map-gl": "^7.1.7"
},
"devDependencies": {
"@types/node": "22.7.9",
"@types/react": "18.3.12",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "5.6.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"
}
}