This repository was archived by the owner on Jan 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.73 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.73 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
61
62
63
64
{
"name": "@buddiesofbudgie/site",
"version": "0.1.0",
"description": "Buddies of Budgie website",
"license": "Apache-2.0",
"private": true,
"author": "BuddiesOfBudgie",
"type": "module",
"bugs": {
"url": "https://github.com/BuddiesOfBudgie/site/issues"
},
"homepage": "https://github.com/BuddiesOfBudgie/site#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start-standalone": "node .next/standalone/apps/site/server.js",
"check-types": "tsc --noemit",
"lint": "yarn run check-types && biome lint --fix",
"format": "biome format --write"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@mdx-js/loader": "3.1.1",
"@mdx-js/mdx": "3.1.1",
"@mdx-js/react": "3.1.1",
"@mobily/ts-belt": "3.13.1",
"@mui/icons-material": "7.3.7",
"@mui/material": "7.3.7",
"@mui/styled-engine": "7.3.7",
"@next/env": "16.1.1",
"@next/mdx": "16.1.1",
"color": "5.0.3",
"feed": "5.1.0",
"gray-matter": "4.0.3",
"luxon": "3.7.2",
"next": "16.1.1",
"next-intl": "4.7.0",
"next-mdx-remote": "5.0.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-icons": "5.5.0",
"react-swipeable-views": "0.14.1",
"sharp": "0.34.5"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/color": "4.2.0",
"@types/luxon": "3.7.1",
"@types/node": "24.7.0",
"@types/react": "19.2.8",
"@types/react-swipeable-views": "0.13.6",
"typescript": "5.9.3"
},
"lint-staged": {
"*.{js,ts,tsx}": "biome check --write",
"*.{js,css,md}": "biome check --write"
},
"packageManager": "yarn@4.10.3",
"resolutions": {
"@types/react": "19.2.8"
}
}