-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.64 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "babasarok-website",
"description": "Babasarok weboldal",
"version": "1.5.8",
"browserslist": [
"defaults"
],
"repository": "https://github.com/AminZibayi/Corporio",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Attila Greguss"
},
"scripts": {
"init": "shx rm -rf .git && git init -b main",
"create": "exec-bin node_modules/.bin/hugo/hugo new",
"prepare": "husky install",
"prestart": "pnpm run clean",
"start": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender --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",
"forestry": "exec-bin node_modules/.bin/hugo/hugo server -D -E -F --renderToDisk -d public",
"tina:dev": "tinacms dev -c \"pnpm start\"",
"tina:build": "tinacms build && exec-bin node_modules/.bin/hugo/hugo --gc --minify",
"prebuild": "pnpm 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": "pnpm run build -D -F",
"clean": "shx rm -rf public resources",
"clean:git": "git branch --merged master | grep -v '^[ *]*master$' | xargs git branch -d",
"clean:install": "shx rm -rf pnpm-lock.yaml node_modules ",
"lint": "pnpm run -s lint:scripts && pnpm run -s lint:styles && pnpm 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": "pnpm run -s lint",
"env": "env",
"precheck": "pnpm version",
"check": "exec-bin node_modules/.bin/hugo/hugo version",
"latest:hugo": "gh release view --repo gohugoio/hugo",
"latest:hyas": "gh release view --repo h-enk/hyas",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"dependencies": {
"@hyas/images": "^0.2.3",
"@tinacms/cli": "^1.5.23",
"bootstrap": "^4.6.2",
"gsap": "1.20.5",
"imagesloaded": "^5.0.0",
"jquery": "^3.6.1",
"lazysizes": "^5.3.2",
"magnific-popup": "github:dimsemenov/Magnific-Popup",
"quicklink": "^2.3.0",
"slick-carousel": "^1.8.1",
"tinacms": "^1.5.14",
"waypoints": "^4.0.1"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@fullhuman/postcss-purgecss": "^4.1.3",
"auto-changelog": "^2.4.0",
"autoprefixer": "^10.4.11",
"eslint": "^8.23.1",
"exec-bin": "^1.0.0",
"hugo-installer": "^4.0.1",
"husky": "^8.0.1",
"markdownlint-cli2": "^0.5.1",
"netlify-plugin-submit-sitemap": "^0.4.0",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"prettier": "^2.7.1",
"prettier-plugin-go-template": "^0.0.13",
"pretty-quick": "^3.1.3",
"purgecss-whitelister": "^2.4.0",
"shx": "^0.3.4",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^4.0.0"
},
"otherDependencies": {
"hugo": "0.114.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
}
}