-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.25 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
{
"name": "dw-website",
"private": true,
"description": "The personal and somewhat professional website for David Wesst, a.k.a. DW, a.k.a. Wessty.",
"version": "10.5.1",
"author": "David Wesst <david@cocobokostudios.com>",
"homepage": "https://github.com/davidwesst/website#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/davidwesst/website.git"
},
"engines": {
"node": "^18"
},
"scripts": {
"prebuild": "concurrently 'npm run clean' 'npm run generate-tags'",
"build": "concurrently 'npm:build:*'",
"build:eleventy": "eleventy --quiet",
"build:assets": "webpack",
"debug:build": "DEBUG=Eleventy* eleventy",
"clean": "rimraf ./dist/*",
"crosspost:wd": "./tools/crosspost-wd.js",
"predev": "concurrently 'npm run clean' 'npm run generate-tags'",
"dev": "concurrently --kill-others 'npm:dev:*'",
"dev:eleventy": "eleventy --serve --quiet",
"dev:webpack": "webpack --watch",
"debug:eleventy": "DEBUG=Eleventy* eleventy",
"generate-tags": "./tools/tag-helper.js 'src/blog' 'src/_data/content-tags.json'",
"prestart": "npm run build",
"start": "swa start --output-location ./dist --swa-config-location ./",
"test:workflow": "./bin/act -j build_and_deploy"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-fetch": "^3.0.0",
"@11ty/eleventy-img": "^3.1.0",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-webc": "^0.11.1",
"@azure/static-web-apps-cli": "^1.0.2",
"concurrently": "^7.4.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"date-fns": "^2.29.3",
"dotenv-webpack": "^8.0.1",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"markdown-it-eleventy-img": "^0.10.1",
"markdown-it-emoji": "^2.0.2",
"mini-css-extract-plugin": "^2.6.1",
"parcel": "^2.7.0",
"rimraf": "^3.0.2",
"sanitize.css": "^13.0.0",
"simple-git": "^3.16.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0",
"yaml": "^2.1.3"
},
"dependencies": {
"@microsoft/applicationinsights-web": "^2.8.8",
"sharp": "^0.31.1"
}
}