-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.91 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
{
"name": "angeliqueweger.com",
"version": "2.0.0",
"private": true,
"scripts": {
"clean": "rm -rf _site && rm -rf .cache && rm -rf _dev",
"start": "npm-run-all --parallel dev:*",
"dev:eleventy": "ELEVENTY_ENV=development eleventy --quiet --serve --output=./_dev",
"dev:parcel": "parcel watch src/assets/img/* src/assets/img/*/* src/assets/img/*/*/* src/assets/styles/styles.scss src/assets/scripts/index.js --out-dir _dev/assets",
"build": "run-s clean prod:*",
"prod:eleventy": "ELEVENTY_ENV=production eleventy",
"prod:proof": "cp ./src/keybase.txt ./_site/",
"prod:parcel": "parcel build src/assets/img/* src/assets/img/*/* src/assets/img/*/*/* src/assets/styles/styles.scss src/assets/scripts/index.js --out-dir _site/assets",
"lint": "npx stylelint 'src/assets/styles/**/*scss'",
"debug": "run-s clean && DEBUG=* eleventy"
},
"repository": {
"type": "git",
"url": "git://github.com/angeliquejw/dev-blog.git"
},
"author": {
"name": "Angélique Weger",
"email": "hello@angeliqueweger.com",
"url": "https://angeliqueweger.com/"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"caniuse-lite": "^1.0.30001194",
"eleventy-plugin-reading-time": "0.0.1",
"jsdom": "^24.1.1",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.0.1",
"markdown-it-attrs": "^4.2.0",
"markdown-it-code-embed": "0.0.8",
"markdown-it-prism": "^2.1.4",
"minimage": "^2.0.5",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"parcel-plugin-imagemin": "^4.0.2",
"prettier": "^3.3.3",
"sanitize-html": "^2.3.2",
"sass": "^1.32.8",
"stylelint": "^14.0.0",
"stylelint-8-point-grid": "^2.2.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-order": "^6.0.4"
}
}