-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.97 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.97 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
{
"name": "jordankasper.com",
"private": true,
"version": "4.0.0",
"engines": {
"node": "22.x"
},
"description": "Static homepage for me",
"scripts": {
"noop": "echo \"No Op!\"",
"clean": "rm -rf build/",
"build": "npm run clean && DEBUGLEVEL=INFO npx metalsmith && rm -rf build/static/ && npx pagefind",
"debug": "npm run clean && DEBUG=metalsmith:*,@metalsmith/*,metalsmith-* DEBUGLEVEL=DEBUG npx metalsmith && cp -r build/presos/* build/ && rm -rf build/presos/ && rm -rf build/static/ && npx pagefind --verbose",
"debug:plugins": "npm run clean && DEBUGLEVEL=DEBUG npx metalsmith && rm -rf build/static/ && npx pagefind",
"check-links": "node link-check.js",
"watch": "npm-watch build"
},
"watch": {
"build": {
"patterns": [
"assets/**/*.*",
"content/**/*.*",
"layouts/**/*.*",
"plugins/*.js",
"static/**/*.*"
],
"delay": 1000
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakerella/jordankasper.com.git"
},
"author": "Jordan Kasper",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakerella/jordankasper.com/issues"
},
"homepage": "https://github.com/jakerella/jordankasper.com#readme",
"dependencies": {
"chart.js": "^4.5.0",
"jquery": "^3.7.1",
"pagefind": "^1.1.1"
},
"devDependencies": {
"@fingerprintjs/fingerprintjs": "^4.6.2",
"@metalsmith/collections": "^1.3.0",
"@metalsmith/layouts": "^2.7.0",
"@metalsmith/permalinks": "^3.0.1",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"jstransformer-handlebars": "^1.2.0",
"jstransformer-markdown": "^1.2.1",
"klaw": "^4.1.0",
"metalsmith": "^2.6.2",
"metalsmith-date-formatter": "^1.0.2",
"metalsmith-discover-partials": "^0.1.2",
"metalsmith-markdown": "^1.3.0",
"metalsmith-pagination": "^1.5.0",
"metalsmith-tags": "^2.1.0",
"npm-watch": "^0.11.0",
"rss": "^1.2.2",
"voca": "^1.4.1"
}
}