-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.74 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
{
"name": "hydejack",
"version": "9.1.6",
"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 --color",
"build:js:stats": "webpack --mode production --progress --color --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 --color",
"watch:css": "npm run build:css && onchange '_sass/**/*.scss' -e '_sass/**/__*/*' -- npm run build:css '{{changed}}'",
"dev": "npm run watch",
"preversion": "npm run preversion:js && npm run preversion:css",
"preversion:js": "sed -i '' 's:/assets/js/\\*hydejack-\\*:#<removed/js>:' .gitignore",
"preversion:css": "sed -i '' 's:/_sass/\\*/__\\*__/\\*:#<removed/css>:' .gitignore",
"version": ".scripts/version.js && npm run format && npm run build && git add .",
"postversion": "(npm run postversion:js && npm run postversion:css) && git add . && git ci -m 'Restore pre-version .gitignore' && npm run postversion:tagfix && npm run postversion:forward",
"postversion:tagfix": "git tag -s pro/v$npm_package_version HEAD^1 -m '$npm_package_version' && git tag -d v$npm_package_version",
"postversion:forward": "git branch -f pro/v9 pro/v$npm_package_version",
"postversion:js": "sed -i '' 's:#<removed/js>:/assets/js/*hydejack-*:' .gitignore && git rm --cached assets/js/*hydejack-*",
"postversion:css": "sed -i '' 's:#<removed/css>:/_sass/*/__*__/*:' .gitignore && git rm --cached _sass/*/__*__/*"
},
"config": {
"port": 4000
},
"author": "Florian Klampfer <[email protected]> (https://qwtel.com/)",
"license": "GPL-3.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"bower": "^1.8.13",
"dedent": "^0.7.0",
"json2yaml": "^1.1.0",
"null-loader": "^4.0.1",
"onchange": "^7.1.0",
"prettier": "^2.5.1",
"re-template-tag": "^2.0.1",
"uglify-js": "^3.15.1",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0",
"worker-plugin": "^5.0.1",
"yargs": "^16.2.0"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@getclaps/button": "^1.0.0-alpha.21",
"@hydecorp/component": "^1.0.0",
"@hydecorp/drawer": "^1.0.0",
"@hydecorp/push-state": "^1.0.0",
"@juggle/resize-observer": "^3.3.1",
"@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",
"abortcontroller-polyfill": "^1.7.3",
"broadcastchannel-polyfill": "^1.0.1",
"core-js": "^2.6.11",
"create-element-x": "^1.2.0",
"dom4": "^2.1.6",
"intersection-observer": "^0.12.0",
"kv-storage-polyfill": "^2.0.0",
"lit-html": "^1.4.1",
"minisearch": "^3.2.0",
"rxjs": "^7.5.2",
"scroll-into-view-if-needed": "^2.2.29",
"tippy.js": "^6.3.7",
"tslib": "^2.3.1",
"web-animations-js": "^2.3.2",
"whatwg-fetch": "^3.6.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"
}
}