forked from academicpages/academicpages.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1007 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "sdan2-github-io",
"version": "1.0.0",
"private": true,
"description": "Soham Dan's academic personal website — based on the AcademicPages / Minimal Mistakes Jekyll theme.",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"pagefind": "^1.1.0",
"terser": "^5.31.0"
},
"scripts": {
"minify:js": "terser assets/js/vendor/jquery/jquery-1.12.4.min.js assets/js/plugins/jquery.fitvids.js assets/js/plugins/jquery.greedy-navigation.js assets/js/plugins/jquery.magnific-popup.js assets/js/plugins/jquery.smooth-scroll.min.js assets/js/plugins/stickyfill.min.js assets/js/_main.js --compress --mangle --output assets/js/main.min.js",
"watch:js": "onchange \"assets/js/**/*.js\" -e \"assets/js/main.min.js\" -- npm run minify:js",
"build:js": "npm run minify:js",
"search:index": "pagefind --site _site",
"build:full": "bundle exec jekyll build && npm run search:index"
}
}