-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 924 Bytes
/
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
{
"name": "trendy-hugo-template",
"version": "1.0.0",
"description": "trendy hugo template",
"main": "index.js",
"repository": "https://github.com/cjaewon/trendy-hugo-template.git",
"author": "cjaewon <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"design": "parcel build design/styles.scss -d hugo/static/styles --no-source-maps",
"design:watch": "parcel watch design/styles.scss -d hugo/static/styles --no-hmr",
"hugo": "cd hugo && hugo",
"hugo:watch": "cd hugo && hugo server -D",
"scripts": "parcel build scripts/src/index.ts -d hugo/static/scripts/ -o bundle.js --no-source-maps",
"scripts:watch": "parcel watch scripts/src/index.ts -d hugo/static/scripts/ -o bundle.js --no-hmr",
"build": "yarn design && yarn scripts && yarn hugo"
},
"dependencies": {
"parcel-bundler": "^1.12.4"
},
"devDependencies": {
"sass": "^1.26.10"
}
}