-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 3.23 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "multietch",
"description": "MultiEtch.com",
"version": "1.0.0",
"engines": {
"node": ">=16.16.0"
},
"browserslist": [
"defaults"
],
"repository": {
"type": "git",
"url": "git+https://github.com/exotica-jewelry/multietch-dev.git"
},
"author": "Ivan Boothe <git@rootwork.org> (https://rootwork.org/)",
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"scripts": {
"init": "shx rm -rf .git && git init -b main",
"create": "exec-bin node_modules/.bin/hugo/hugo new",
"create:blog": "scripts/new_blog_post.sh --editor='subl' -o -a",
"create:rate": "scripts/new_rate.sh",
"prestart": "npm run clean",
"start": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender --buildDrafts --buildFuture --baseURL=http://localhost",
"start:lan": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --baseURL=http://192.168.1.10 --port=1313",
"start:gitpod": "exec-bin node_modules/.bin/hugo/hugo server --disableFastRender --buildDrafts --buildFuture --baseUrl $(gp url 1313) --liveReloadPort=443 --appendPort=false --bind=0.0.0.0",
"prebuild": "npm run clean",
"build": "exec-bin node_modules/.bin/hugo/hugo --gc --minify",
"build:lan": "exec-bin node_modules/.bin/hugo/hugo --gc --minify --baseURL=http://192.168.1.10:8080",
"build:preview": "npm run build -D -F",
"build:gh-pages": "exec-bin node_modules/.bin/hugo/hugo --gc --minify --baseUrl https://exotica-jewelry.github.io/multietch-dev/",
"clean": "shx rm -rf public resources",
"clean:install": "shx rm -rf package-lock.json node_modules ",
"lint": "npm run -s lint:scripts && npm run -s lint:styles && npm run -s lint:markdown",
"lint:scripts": "eslint assets/js config functions",
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\"",
"lint:markdown": "markdownlint-cli2 \"*.md\" \"content/**/*.md\"",
"lint:markdown-fix": "markdownlint-cli2-fix \"*.md\" \"content/**/*.md\"",
"server": "exec-bin node_modules/.bin/hugo/hugo server",
"test": "echo \"Error: no test specified\" && exit 1",
"env": "env",
"precheck": "npm version",
"check": "exec-bin node_modules/.bin/hugo/hugo version",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.18",
"@babel/core": "^7.18",
"@babel/preset-env": "^7.18",
"@fullhuman/postcss-purgecss": "^4.1",
"@hyas/images": "^0.2.2",
"@popperjs/core": "^2.11",
"auto-changelog": "^2.4",
"autoprefixer": "^10.4",
"bootstrap": "^5.2.0-beta1",
"eslint": "^8.20",
"exec-bin": "^1.0.0",
"hugo-installer": "^3.1",
"husky": "^8.0.1",
"lazysizes": "^5.3",
"markdownlint-cli2": "^0.4.0",
"netlify-plugin-submit-sitemap": "^0.4.0",
"postcss": "^8.4",
"postcss-cli": "^10.0",
"prettier": "^2.7.1",
"prettier-plugin-go-template": "^0.0.13",
"pretty-quick": "^3.1.3",
"purgecss-whitelister": "^2.4",
"quicklink": "^2.2.0",
"shx": "^0.3",
"stylelint": "^14.9",
"stylelint-config-standard-scss": "^5.0"
},
"otherDependencies": {
"hugo": "0.101.0"
}
}