-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "beehive",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && npm run generate-rss",
"start": "next start",
"generate-rss": "tsx ./scripts/generateRSS.ts",
"get-park-data": "tsx ./app/roller-coasters/scripts/getParkData.ts",
"upload-park": "tsx ./app/roller-coasters/scripts/uploadPark.ts"
},
"dependencies": {
"@types/node": "20.3.1",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"cheerio": "^1.0.0",
"classnames": "^2.3.2",
"dotenv": "^16.4.5",
"lodash": "^4.17.21",
"maplibre-gl": "^4.1.2",
"next": "^14.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"react-map-gl": "^7.1.7",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"react-tiny-popover": "^8.0.4",
"rehype-raw": "^6.1.1",
"remove-markdown": "^0.5.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/geojson": "^7946.0.14",
"@types/lodash": "^4.17.13",
"@types/marked": "^5.0.0",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/remove-markdown": "^0.3.1",
"@types/webpack-env": "^1.18.1",
"@types/yargs": "^17.0.32",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"marked": "^5.1.0",
"tsx": "^4.10.2",
"yargs": "^17.7.2"
},
"engines": {
"node": "20.x"
}
}