-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.19 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@limulus/limulus-dot-net",
"version": "1.0.0",
"description": "limulus.net",
"main": "index.js",
"type": "module",
"scripts": {
"prebuild": "npm run clean",
"build": "eleventy",
"cdkc": "./infra/test/cdk-synthesis.sh",
"clean": "del-cli *.tsbuildinfo coverage dist",
"predev": "npm run prebuild",
"dev": "eleventy --serve --incremental",
"update-revisions": "node 11ty/update-revisions.ts",
"lint": "eslint *.js *.ts 11ty www infra types",
"postinstall": "patch-package",
"prepare": "husky && mkdirp photos",
"photos": "node ./bin/process-photos.js photos/*",
"test": "vitest run --project unit",
"test:integration": "vitest run --project integration --reporter=verbose",
"test:all": "vitest run",
"tscc": "tsc --noEmit",
"verify": "concurrently -m 100% -c auto npm:lint npm:tscc npm:wwwc npm:cdkc npm:test",
"wwwc": "eleventy --dryrun"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limulus/limulus-dot-net.git"
},
"author": {
"name": "Eric McCarthy",
"email": "eric@limulus.net",
"url": "https://limulus.net/"
},
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/limulus/limulus-dot-net/issues"
},
"homepage": "https://github.com/limulus/limulus-dot-net#readme",
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@11ty/eleventy-plugin-webc": "^0.11.2",
"@aws-solutions-constructs/aws-cloudfront-s3": "^2.90.2",
"@limulus/eslint-config": "^5.0.0",
"@limulus/penumbra": "^1.9.1",
"@matthewbonig/cdk-logical-id-mapper": "^0.0.2",
"@prettier/plugin-xml": "^3.4.1",
"@types/node": "^20.0.0",
"aws-rum-web": "^1.19.0",
"basic-ftp": "^5.0.5",
"blurhash": "^2.0.5",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"date-fns": "^4.1.0",
"del-cli": "^5.1.0",
"eleventy-plugin-svg-sprite": "^2.4.5",
"es-main": "^1.3.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"exifreader": "^4.25.0",
"highlight.js": "^11.9.0",
"hls.js": "^1.6.8",
"into-stream": "^8.0.1",
"listr": "^0.14.3",
"mapbox-gl": "^3.9.4",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"markdown-it-footnote": "^4.0.0",
"markdown-it-task-lists": "^2.1.1",
"media-chrome": "^4.12.0",
"media-tracks": "^0.3.3",
"mkdirp": "^3.0.1",
"p-filter": "^4.1.0",
"prettier": "^3.3.3",
"pretty-bytes": "^6.1.1",
"raf": "^3.4.1",
"reading-time": "^1.5.0",
"sharp": "^0.33.5",
"touch-pad": "^1.1.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"devDependencies": {
"@aws-sdk/client-cloudfront": "^3.859.0",
"@dprint/formatter": "^0.4.1",
"@types/aws-cloudfront-function": "^1.0.5",
"@types/raf": "^3.4.3",
"aws-cdk": "^2.1023.0",
"aws-cdk-lib": "^2.208.0",
"cdk-nag": "^2.36.50",
"constructs": "^10.4.2",
"dotenv": "^16.4.7",
"dprint": "^0.50.2",
"dprint-plugin-markup": "^0.24.0",
"esbuild-plugin-wasm": "^1.1.0",
"globby": "^14.0.1",
"gray-matter": "^4.0.3",
"husky": "^9.1.5",
"patch-package": "^8.0.1",
"vitest": "^3.2.4"
}
}