-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·76 lines (76 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "11ty3",
"version": "1.0.0",
"description": "Blog for Eric Carlisle : UI, UX Engineer",
"engines": {
"node": "v18.12.1"
},
"main": ".eleventy.js",
"scripts": {
"build": "ELEVENTY_ENV=production npm-run-all -s clean build:webpack build:11ty",
"build:11ty": "npx @11ty/eleventy --config .eleventy.js",
"build:webpack": "webpack --config webpack.config.js",
"clean": "rm -rf ./_site/**/* && rm -rf ./dist/*",
"debug:dev": "ELEVENTY_ENV=development DEBUG=Eleventy* npm-run-all -p watch:webpack serve:11ty",
"debug:prod": "ELEVENTY_ENV=production DEBUG=Eleventy* npm-run-all -p watch:webpack serve:11ty",
"dev": "ELEVENTY_ENV=development npm-run-all -p watch:webpack serve:11ty",
"serve:11ty": "npx @11ty/eleventy --config .eleventy.js --serve --incremental",
"serve": "serve _site",
"test:prettier": "prettier --config .prettierrc.json --check **",
"watch:webpack": "webpack --config webpack.config.js --watch"
},
"author": "Eric Carlisle",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-cache-assets": "^2.3.0",
"@11ty/eleventy-img": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@11ty/eleventy-plugin-webc": "^0.8.1",
"@11ty/is-land": "^3.0.0",
"@sherby/eleventy-plugin-files-minifier": "^1.1.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"autoprefixer": "^10.4.13",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"cssnano": "^5.1.14",
"cssnano-preset-default": "^5.2.13",
"eleventy-plugin-postcss": "^1.0.4",
"esbuild-postcss": "^0.0.4",
"esbuild-sass-plugin": "^2.4.5",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"file-loader": "^6.2.0",
"luxon": "^3.1.1",
"mini-css-extract-plugin": "^2.7.2",
"npm": "^9.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"postcss-sort-media-queries": "^4.3.0",
"prettier": "^2.8.1",
"resolve-url-loader": "^5.0.0",
"rollup": "^3.10.0",
"sass-loader": "^13.2.0",
"serve": "^14.2.0",
"style-loader": "^3.3.1",
"stylelint": "^14.16.0",
"stylelint-config-standard-scss": "^6.1.0",
"terser-webpack-plugin": "^5.3.6",
"vite": "^4.1.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"lite-youtube-embed": "^0.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}