forked from samestep/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 802 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 802 Bytes
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
{
"name": "website",
"private": true,
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"highlight.js": "^11",
"markdown-it": "^14",
"markdown-it-katex": "^2",
"preact": "^10.27.1",
"preact-render-to-string": "^6"
},
"devDependencies": {
"@resvg/resvg-js": "^2",
"@types/markdown-it": "^14",
"@types/node": "^20",
"chokidar": "^3",
"live-server": "^1",
"log-update": "^6",
"prettier": "^3",
"prettier-plugin-organize-imports": "^4",
"qr": "^0.5",
"tsx": "^4",
"typescript": "^5.6"
},
"scripts": {
"check": "prettier --check . && tsc",
"format": "prettier --write .",
"build": "tsx build.ts",
"dev": "live-server dist --verbose",
"serve": "live-server dist --verbose"
}
}