-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 1.21 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
{
"scripts": {
"jekyll:serve": "bundle exec jekyll serve --incremental --watch --ssl-key ssl/localhost.key --ssl-cert ssl/localhost.crt",
"jekyll:build": "npm run js:minify && bundle exec jekyll build && npm run csso:minify",
"css:build": "npx tailwindcss -i ./assets/css/main.css -o ./assets/main.css && npx tailwindcss -i ./assets/css/legendary.css -o ./assets/legendary.css && npx tailwindcss -i ./assets/css/interactive.css -o ./assets/interactive.css && npx tailwindcss -i ./assets/css/content-preloader.css -o ./assets/content-preloader.css",
"csso:minify": "node build-csso.js",
"js:minify": "node build-minify.js",
"css:watch": "nodemon -e css -x 'npm run css:build'",
"browser-sync": "browser-sync start --config bs-config.js",
"start": "npm-run-all -p jekyll:serve css:watch browser-sync"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.14",
"browser-sync": "^3.0.3",
"csso": "^5.0.5",
"cssnano": "^6.0.1",
"fluid-tailwind": "^1.0.4",
"gsap": "^3.12.5",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"postcss-import": "^15.1.0",
"tailwindcss": "^3.4.14",
"terser": "^5.36.0"
}
}