-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 943 Bytes
/
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": "bundle exec jekyll build",
"css:build": "npx tailwindcss -i ./assets/css/main.css -o ./assets/main.css --minify",
"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/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.7",
"browser-sync": "^2.29.3",
"cssnano": "^6.0.1",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"postcss-import": "^15.1.0",
"tailwindcss": "^3.3.2"
},
"dependencies": {
"three": "^0.157.0"
}
}