-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 826 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "codefrydev-site",
"private": true,
"scripts": {
"build:css": "tailwindcss -i ./assets/css/tailwind-input.css -o ./static/css/home-tailwind.css --minify && node ./scripts/bundle-site-css.mjs",
"build:js": "node ./scripts/bundle-site-js.mjs",
"convert:hero": "node ./scripts/convert-hero-images.mjs",
"build": "npm run build:css && npm run build:js",
"sync:rankings": "node ./scripts/sync-tool-rankings.mjs",
"watch:css": "tailwindcss -i ./assets/css/tailwind-input.css -o ./static/css/home-tailwind.css --watch",
"dev": "npm run build && hugo server"
},
"devDependencies": {
"@google-analytics/data": "^5.1.0",
"esbuild": "^0.25.0",
"fuse.js": "^7.3.0",
"lightningcss": "^1.32.0",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.17",
"yaml": "^2.7.0"
}
}