-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
{
"name": "johnridesa.bike",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "John Jackson's personal site",
"keywords": [
"eleventy",
"acutis"
],
"bugs": {
"url": "https://github.com/johnridesabike/johnridesabike.github.io/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/johnridesabike/johnridesabike.github.io"
},
"license": "MPL-2.0",
"author": "John Jackson",
"scripts": {
"build": "ELEVENTY_ENV=production eleventy",
"clean": "rm -r _site",
"deploy": "gh-pages -d _site -b master -t",
"predeploy": "npm run clean && npm run build",
"start": "ELEVENTY_ENV=development eleventy --serve"
},
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@fontsource-variable/source-code-pro": "^5.0.16",
"@fontsource-variable/source-sans-3": "^5.0.18",
"acutis-lang": "^0.26.0",
"cssnano": "^7.0.4",
"feather-icons": "^4.29.1",
"gh-pages": "^6.0.0",
"html-minifier": "^4.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-implicit-figures": "^0.12.0",
"markdown-it-table-of-contents": "^0.8.0",
"normalize.css": "^8.0.1",
"postcss": "^8.4.31",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^9.3.0",
"postcss-url": "^10.1.3",
"simple-icons": "^9.20.0"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"eslint": "^9.6.0",
"globals": "^15.8.0",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.1"
}
}