generated from shgysk8zer0/jekyll-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 3.25 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
{
"name": "whiskey-flat-days",
"version": "3.0.9",
"private": true,
"type": "module",
"description": "Map, events, store, and news app for Whiskey Flat Days",
"config": {
"icons": "./_data/icons.yml",
"serve": {
"domain": "localhost",
"path": "./",
"port": 4000
},
"dir": {
"css": "css/",
"js": "js/",
"img": "img/",
"html": "./"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kernvalley/whiskey-flat-days.git"
},
"keywords": [
"whiskey flat",
"kernville",
"kern valley",
"kern river valley",
"festival",
"events",
"parade",
"rodeo",
"events",
"vendor"
],
"author": "Chris Zuber <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kernvalley/whiskey-flat-days/issues"
},
"homepage": "https://github.com/kernvalley/whiskey-flat-days",
"scripts": {
"test": "npm run lint",
"start": "npm run netlify",
"preinstall": "npm run git:submodules",
"postinstall": "npm run build",
"preversion": "npm test",
"git:fetch": "git fetch --prune --tags",
"git:submodules": "if [ -f '.gitmodules' ]; then git submodule update --init --recursive; fi",
"lint": "npm run lint:js && npm run lint:css && npm run lint:html",
"lint:js": "if [ -f .eslintrc.json ]; then eslint .; fi",
"lint:css": "if [ -f .stylelintrc.json ]; then stylelint './**.css'; fi",
"lint:html": "if [ -f .htmlhintrc ]; then htmlhint ${npm_package_config_dir_html}; fi",
"fix:css": "stylelint './**.css' --fix",
"fix:js": "eslint. --fix",
"build": "npm run build:icons && npm run build:css && npm run build:js",
"build:site": "JEKYLL_ENV=production bundle exec jekyll build",
"build:site:dev": "bundle exec jekyll build --drafts --unpublished --future --profile --trace --strict_front_matter",
"build:css": "if [ -f 'postcss.config.js' ]; then postcss ${npm_package_config_dir_css}index.css -o ${npm_package_config_dir_css}index.min.css; fi",
"build:js": "if [ -f 'rollup.config.js' ]; then rollup --config; fi",
"build:icons": "if [ -f ${npm_package_config_icons} ]; then svg-use-symbols -c ${npm_package_config_icons} -o 'img/icons.svg'; fi",
"serve:production": "npm run build && JEKYLL_ENV=production bundle exec jekyll serve",
"serve:dev": "bundle exec jekyll serve --drafts --unpublished --future --profile --trace --strict_front_matter",
"netlify": "if [ -f '.netlify/state.json' ]; then npm run netlify:live; else npm run netlify:serve; fi",
"netlify:deploy": "netlify deploy",
"netlify:serve": "netlify dev",
"netlify:live": "netlify dev --live",
"netlify:link": "netlify link",
"create:lock": "npm i --package-lock-only --ignore-scripts --no-audit --no-fund",
"version:bump": "npm run version:bump:patch",
"version:bump:patch": "npm version --no-git-tag-version patch && npm run create:lock",
"version:bump:minor": "npm version --no-git-tag-version minor && npm run create:lock",
"version:bump:major": "npm version --no-git-tag-version major && npm run create:lock"
},
"dependencies": {
"eslint-plugin-frontmatter": "0.0.8",
"firebase-admin": "^13.0.2",
"netlify-js-app": "^3.3.2",
"stripe": "^17.5.0",
"yaml": "^2.7.0"
}
}