-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.48 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
{
"name": "jolicoeur",
"title": "Adam J. Jolicoeur",
"version": "9.0.0",
"author": "Adam J. Jolicoeur",
"homepage": "https://www.adamjolicoeur.com",
"license": "Apache-2.0",
"licenseUrl": "https://github.com/adamj/adamj.github.io/blob/main/LICENSE",
"main": "index.js",
"engines": {
"node": "22"
},
"scripts": {
"stylelint": "npx stylelint '**/*.scss'",
"stylelint:fix": "npx stylelint --fix `src/sass/style.scss`",
"watch:sass": "sass --no-source-map --watch src/sass:docs/css",
"watch:eleventy": "eleventy --serve --port=8081",
"build:sass-nomap": "sass --no-source-map src/sass/style.scss docs/css/style.css",
"build:sass-site": "sass src/sass/style.scss docs/css/style.css",
"build:sass": "npm-run-all --parallel build:sass-site",
"build:eleventy": "eleventy",
"postbuild": "postcss docs/css/*.css -u autoprefixer cssnano -r",
"start": "cross-env ELEVENTY_ENV=dev npm-run-all build:sass --parallel watch:*",
"build": "cross-env ELEVENTY_ENV=prod npm-run-all build:sass build:eleventy",
"lint": "stylelint 'src/sass/*.scss' 'src/sass/*.scss' 'src/sass/*.scss'",
"lint:fix": "stylelint --fix 'src/sass/*.scss' 'src/sass/*.scss' 'src/sass/*.scss'",
"bump": "npm --no-git-tag-version version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdamJ/AdamJ.github.io.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/AdamJ/AdamJ.github.io/issues"
},
"devDependencies": {
"@netlify/plugin-lighthouse": "^6.0.0",
"@11ty/eleventy": "^3.0.0-beta.1",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/eleventy-plugin-inclusive-language": "^1.0.3",
"eleventy-plugin-toc": "^1.1.5",
"eleventy-plugin-dropcap": "^1.1.0",
"autoprefixer": "10.4.14",
"cross-env": "7.0.3",
"cssnano": "6.0.1",
"dotenv": "16.1.4",
"emoji-regex": "10.2.1",
"luxon": "3.3.0",
"markdown-it": "13.0.1",
"markdown-it-anchor": "8.6.7",
"markdown-it-eleventy-img": "^0.10.1",
"markdown-it-highlightjs": "^4.2.0",
"npm-run-all": "4.1.5",
"postcss-cli": "10.1.0",
"sass": "1.69.5",
"stylelint": "15.11.0",
"stylelint-config-standard-scss": "11.1.0",
"stylelint-order": "6.0.3"
},
"browserslist": [
"last 2 versions"
],
"dependencies": {
"bootstrap": "^5.3.3",
"@shoelace-style/shoelace": "^2.18.0"
}
}