-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.94 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
{
"name": "pbsladek",
"version": "2.2.6",
"keywords": [
"blog",
"pbsladek"
],
"homepage": "https://github.com/pbsladek/blog",
"description": "pbsladek blog",
"repository": {
"type": "git",
"url": "git+https://github.com/pbsladek/blog.git"
},
"bugs": {
"url": "https://github.com/pbsladek/blog/issues"
},
"scripts": {
"build": "cross-env JEKYLL_ENV=production bundle exec jekyll build",
"serve": "bundle exec jekyll serve -H 0.0.0.0",
"Gemfile.lock": "docker run --rm -v \"$PWD\":/usr/src/app -w /usr/src/app ruby:3.0 bundle install",
"docker-dev:build-image": "docker-compose -f ./docker/docker-compose.build-image.yml build",
"docker-dev:default": "docker-compose -f ./docker/docker-compose.default.yml up",
"docker-dev:dev": "docker-compose -f ./docker/docker-compose.dev.yml up",
"docker-prod:build": "cross-env JEKYLL_ENV=production docker-compose -f ./docker/docker-compose.prod.yml build",
"docker-prod:serve": "cross-env JEKYLL_ENV=production docker-compose -f ./docker/docker-compose.prod.yml up",
"default": "bundle exec jekyll serve -H 0.0.0.0 -t",
"eslint": "eslint \"_includes/**/*.js\"",
"eslint-fix": "eslint \"_includes/**/*.js\" --fix",
"stylelint": "stylelint --syntax scss \"_sass/**/*.scss\"",
"stylelint-fix": "stylelint --syntax scss \"_sass/**/*.scss\" --fix",
"gem-build": "rm -fv jekyll-text-theme-*.gem && gem build jekyll-text-theme.gemspec",
"gem-push": "gem push jekyll-text-theme-*.gem"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"husky": "^4.2.1",
"stylelint": "^13.0.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.14.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}