-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
56 lines (56 loc) · 2.06 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
{
"name": "mirrord",
"version": "1.0.0",
"description": "mirrord dev",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/metalbear-co/mirrord.dev"
},
"author": "MetalBear <[email protected]>",
"license": "MIT",
"scripts": {
"init": "shx rm -rf .git && git init -b main",
"create": "exec-bin node_modules/.bin/hugo/hugo new",
"prestart": "npm run clean",
"start": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender",
"prebuild": "npm run clean",
"build": "exec-bin node_modules/.bin/hugo/hugo --gc --minify -e $HUGO_ENVIRONMENT",
"build:preview": "npm run build -D -F",
"clean": "shx rm -rf public resources",
"clean:install": "shx rm -rf package-lock.json node_modules ",
"dev": "concurrently npm:watch:*",
"watch:tw": "tailwindcss -i ./assets/css/styles.css -o ./assets/css/site.css --watch",
"watch:hugo": "exec-bin node_modules/.bin/hugo/hugo server --disableFastRender",
"build:hugo": "hugo --gc --minify",
"start:hugo": "hugo server",
"precheck": "npm version",
"check": "exec-bin node_modules/.bin/hugo/hugo version",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"browserslist": [
"last 2 version",
"> 1%",
"maintained node versions",
"not dead"
],
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"alpinejs": "^3.10.5",
"autoprefixer": "^10.4.7",
"clipboard": "^2.0.11",
"concurrently": "^7.6.0",
"exec-bin": "^1.0.0",
"hugo-installer": "^4.0.1",
"instant.page": "^5.1.1",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.1.0",
"shx": "^0.3.4",
"tailwindcss": "^3.1.4"
},
"otherDependencies": {
"hugo": "0.121.2"
}
}