-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.88 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": "mehrlicht-photos",
"version": "1.1.0",
"description": "Source code for the personal photography website of Moritz L'Hoest.",
"keywords": [
"eleventy"
],
"homepage": "https://mehrlicht.photos",
"bugs": "https://github.com/MoritzLost/MehrLicht/issues",
"repository": {
"type": "git",
"url": "https://github.com/MoritzLost/MehrLicht.git"
},
"license": "UNLICENSED",
"author": "MoritzLost <[email protected]>",
"scripts": {
"build": "npm run build:eleventy && npm run build:sass && npm run build:parcel",
"build:eleventy": "eleventy",
"build:sass": "sass --style compressed --no-source-map src/sass/main.scss dist/css/main.css",
"build:parcel": "parcel build --out-dir dist/js/ --public-url /js/ src/js/main.js",
"start": "npm-run-all build:sass -p watch:*",
"watch:eleventy": "eleventy --serve",
"watch:sass": "sass --watch --style expanded --embed-source-map src/sass/main.scss dist/css/main.css",
"watch:parcel": "parcel watch --out-dir dist/js/ --public-url /js/ src/js/main.js",
"get_image_sizes": "node ./scripts/get_image_sizes",
"get_image_sizes_precommit": "node ./scripts/get_image_sizes --throw-on-diff"
},
"dependencies": {
"@11ty/eleventy": "^1.0.2",
"@fortawesome/fontawesome-free": "^6.2.1",
"@midzer/tobii": "^2.4.0",
"hamburgers": "^1.2.1",
"jsdom": "^20.0.3",
"markdown-it": "^13.0.1",
"parcel-bundler": "^1.12.4",
"prism-themes": "^1.9.0",
"rfs": "^9.0.6",
"sass": "^1.56.1",
"tobii": "^2.0.0-alpha"
},
"devDependencies": {
"image-size": "^1.0.2",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2"
},
"engines": {
"node": "^16.14.2",
"npm": "^9.1.2"
},
"precommit": "get_image_sizes_precommit"
}