-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.65 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "phil.red",
"version": "1.0.0",
"description": "flying-sheep’s blog",
"private": true,
"main": "dist/bundle.js",
"type": "module",
"repository": "https://github.com/flying-sheep/phil.red.git",
"author": "Philipp A. <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"bundlesize": "tsc && vite-bundle-visualizer",
"lint": "$npm_execpath run lint:check && $npm_execpath run lint:deps",
"lint:check": "biome check --write .",
"lint:deps": "depcheck --ignores=unfonts.css,@fontsource/iosevka,@fontsource/iosevka-aile,@yarnpkg/sdks,@tsconfig/strictest,@total-typescript/ts-reset",
"deploy": "$npm_execpath run build && rsync --recursive --delete --archive --compress --progress dist/ [email protected]:/srv/http/phil.red",
"prepare": "husky"
},
"files": ["dist"],
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fontsource/iosevka": "^5.1.0",
"@fontsource/iosevka-aile": "^5.1.0",
"@matejmazur/react-katex": "^3.1.3",
"@mui/icons-material": "^6.1.8",
"@mui/material": "^6.1.8",
"@mui/system": "^6.1.0",
"fetch-suspense": "^1.2.2",
"katex": "^0.16.11",
"merge-sx": "^3.2.4",
"plotly.js-basic-dist-min": "^2.35.2",
"prism-react-renderer": "^2.4.0",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-helmet-async": "^2.0.5",
"react-is": "^18.3.1",
"react-plotly.js": "^2.6.0",
"react-portal-target": "^1.0.2",
"react-router-dom": "^7.0.1",
"react-slide-routes": "^3.0.3",
"typed-jsx": "^0.1.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@total-typescript/ts-reset": "^0.6.1",
"@tsconfig/strictest": "^2.0.5",
"@types/estree": "^1.0.5",
"@types/katex": "^0.16.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.9.3",
"@types/plotly.js-basic-dist-min": "^2.12.4",
"@types/prismjs": "^1.26.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-is": "^18.3.0",
"@types/react-plotly.js": "^2.6.3",
"@vitejs/plugin-react": "^4.3.3",
"@yarnpkg/sdks": "^3.2.0",
"depcheck": "^1.4.7",
"estree-walker": "^3.0.3",
"globby": "^14.0.2",
"husky": ">=9.1.7",
"lint-staged": ">=15.2.10",
"magic-string": "^0.30.13",
"markdown-it": "^14.1.0",
"react-json-tree": "^0.19.0",
"restructured": "^0.0.11",
"rollup": "^4.27.4",
"typescript": "^5.6.3",
"unplugin-fonts": "^1.1.1",
"vite": "^5.4.11",
"vite-bundle-visualizer": "^1.2.1"
},
"packageManager": "[email protected]",
"lint-staged": {
"!(rawPosts)": "biome check --no-errors-on-unmatched --files-ignore-unknown=true --write"
}
}