-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 844 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 844 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
{
"name": "youtube-blog",
"version": "0.1.0",
"license": "MIT License",
"private": true,
"scripts": {
"build": "bun run build.ts --no-favicons",
"watch": "bun run build.ts --watch --no-favicons",
"prod": "NODE_ENV=production bun run build.ts",
"deploy": "bun run prod && hugo --cleanDestinationDir",
"cf:build": "sh cf-build.sh",
"hugo": "hugo serve -D --noHTTPCache=true --disableFastRender",
"hugo-p": "bun run hugo --disableLiveReload",
"hugo-l": "bun run hugo-p --appendPort=false -b",
"serve": "ngrok http 1313 --log stderr"
},
"dependencies": {
"buefy": "^0.6.5",
"bulma": "^0.6.2",
"vue": "^2.5.16"
},
"devDependencies": {
"favicons": "^7.2.0",
"sass": "^1.77.0",
"vue-template-compiler": "^2.5.16"
},
"trustedDependencies": [
"@parcel/watcher"
]
}