-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "hugo-profile",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "yarn run-p watch:tw watch:hugo",
"watch:tw": "yarn workspaces foreach run yarn watch",
"watch:hugo": "hugo server -w",
"build": "yarn run-s build:tw build:hugo",
"build:tw": "yarn workspaces foreach run yarn build",
"build:hugo": "hugo",
"deploy": "yarn build && ./deploy.sh"
},
"workspaces": [
"themes/hugo-profile"
],
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/ziggy6792/ziggy6792.github.io.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ziggy6792/ziggy6792.github.io/issues"
},
"homepage": "https://github.com/ziggy6792/ziggy6792.github.io#readme",
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prettier-plugin-go-template": "^0.0.13",
"prettier-plugin-tailwindcss": "^0.2.7"
}
}