forked from hydecorp/hydejack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.2 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
{
"name": "hydejack",
"version": "8.2.0",
"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 & wait",
"build:js": "webpack --mode production",
"build:css": ".scripts/build-css.js",
"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.2.2",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"color": "^3.1.0",
"dedent": "^0.7.0",
"json2yaml": "^1.1.0",
"onchange": "^5.2.0",
"prettier": "^1.16.3",
"re-template-tag": "^2.0.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-merge": "^4.2.1",
"yargs": "^12.0.5"
},
"dependencies": {
"@webcomponents/webcomponentsjs": "2.1.3",
"core-js": "^2.6.3",
"elem-dataset": "^1.1.1",
"hy-drawer": "^1.0.0-pre.25",
"hy-img": "^1.0.0-hydejack.10",
"hy-push-state": "^1.0.0-pre.25",
"intersection-observer": "^0.5.1",
"resize-observer-polyfill": "^1.5.1",
"rxjs": "^6.4.0",
"smoothscroll-polyfill": "^0.4.3",
"web-animations-js": "^2.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/qwtel/hydejack.git"
},
"bugs": {
"url": "https://github.com/qwtel/hydejack/issues"
},
"homepage": "https://hydejack.com/",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5"
}
}