-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3 KB
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
{
"name": "jolicoeur",
"title": "Adam J. Jolicoeur",
"version": "11.4.1",
"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": "25.9.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"clean": "rm -rf docs",
"webhint": "hint http://localhost:8081",
"stylelint": "npx stylelint '**/*.scss'",
"stylelint:fix": "npx stylelint --fix `src/sass/style.scss`",
"webawesome": "cp -R node_modules/@awesome.me/webawesome/dist/webawesome.js src/js",
"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:docs/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 clean images:optimize build:sass --parallel watch:*",
"build": "cross-env ELEVENTY_ENV=prod npm-run-all clean images:optimize build:sass build:eleventy",
"lint": "stylelint 'src/sass/*.scss'",
"lint:fix": "stylelint --fix 'src/sass/*.scss'",
"images:optimize": "node scripts/image-optimizer.js",
"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": {
"@11ty/eleventy": "3.1.5",
"@11ty/eleventy-activity-feed": "2.0.0",
"@11ty/eleventy-img": "6.0.4",
"@11ty/eleventy-navigation": "1.0.5",
"@11ty/eleventy-plugin-inclusive-language": "1.0.3",
"@11ty/eleventy-plugin-rss": "3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "5.0.2",
"@11ty/import": "1.0.19",
"@hint/hint-axe": "4.4.21",
"autoprefixer": "10.4.27",
"cross-env": "10.1.0",
"cssnano": "7.1.4",
"dotenv": "17.4.1",
"eleventy-plugin-dropcap": "1.1.0",
"eleventy-plugin-toc": "1.1.5",
"emoji-regex": "10.6.0",
"hint": "7.1.13",
"luxon": "3.7.2",
"markdown-it": "14.1.1",
"markdown-it-anchor": "9.2.0",
"markdown-it-eleventy-img": "0.10.2",
"markdown-it-highlightjs": "3.0.0",
"npm-run-all": "4.1.5",
"postcss-cli": "11.0.1",
"sass": "1.99.0",
"stylelint": "17.6.0",
"stylelint-config-standard-scss": "17.0.0",
"stylelint-order": "8.1.1"
},
"browserslist": [
"> 5%, not dead",
"last 2 major versions"
],
"dependencies": {
"@11tyrocks/eleventy-plugin-emoji-readtime": "1.0.1",
"@11tyrocks/eleventy-plugin-sass-lightningcss": "1.3.0",
"bootstrap": "5.3.8",
"markdown-it-container": "4.0.0"
},
"pnpm": {
"overrides": {
"tar": "7.5.13",
"tar-fs": "3.1.2",
"ws": "8.20.0"
}
}
}