-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.73 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
{
"name": "hydejack",
"version": "8.5.2",
"description": "The best Jekyll theme by a mile",
"scripts": {
"clean": "rm -f assets/js/hydejack-*.js",
"test": "exit 0",
"format": "prettier --write \"_js/src/**/*.js\"",
"build": "npm run build:js & npm run build:css & npm run build:scripts & wait",
"build:js": "webpack --mode production",
"build:js:stats": "webpack --mode production --progress --colors --json > stats.json",
"build:css": ".scripts/build-css.js",
"build:scripts": " for f in $(find _includes/scripts -type f ! -name '*.min.js'); do g=${f%.js}; uglifyjs $f -c -m > $g.min.js; done",
"watch": "npm run watch:js & npm run watch:css",
"watch:js": "webpack --watch --mode development --progress --colors",
"watch:css": "npm run build:css && onchange '_sass/**/*.scss' -e '_sass/**/__*/*' -- npm run build:css '{{changed}}'",
"serve": "bundle exec jekyll serve --port=$npm_package_config_port --host=0.0.0.0",
"dev": "npm run watch & npm run serve",
"prepare": "npm run test && npm run clean && npm run build",
"resume": "json2yaml _data/resume.json > _data/resume.yml",
"version": "npm run format && npm run build && git add ."
},
"config": {
"port": 4000
},
"author": "Florian Klampfer <[email protected]> (https://qwtel.com/)",
"license": "GPL-3.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.6",
"babel-loader": "^8.2.2",
"color": "^4.0.1",
"dedent": "^0.7.0",
"json2yaml": "^1.1.0",
"null-loader": "^4.0.1",
"onchange": "^7.1.0",
"polyfill": "^0.1.0",
"prettier": "^2.4.1",
"re-template-tag": "^2.0.1",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-merge": "^5.8.0",
"yargs": "^17.2.0"
},
"dependencies": {
"@webcomponents/custom-elements": "^1.5.0",
"@webcomponents/shadycss": "^1.11.0",
"@webcomponents/shadydom": "^1.9.0",
"@webcomponents/template": "^1.5.0",
"@webcomponents/url": "^0.7.8",
"@webcomponents/webcomponents-platform": "^1.0.1",
"@webcomponents/webcomponentsjs": "^2.6.0",
"core-js": "^3.18.0",
"elem-dataset": "^2.0.0",
"hy-drawer": "^1.0.0-uvw.0",
"hy-img": "^1.0.0-stencil.0",
"hy-push-state": "^1.0.0-uvw.0",
"intersection-observer": "^0.12.0",
"regenerator-runtime": "^0.13.9",
"resize-observer-polyfill": "^1.5.1",
"rxjs": "^7.3.0",
"smoothscroll-polyfill": "^0.4.4",
"web-animations-js": "^2.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/qwtel/hydejack.git"
},
"bugs": {
"url": "https://github.com/qwtel/hydejack/issues"
},
"homepage": "https://hydejack.com/",
"engines": {
"node": ">=11"
}
}