-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 967 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
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "boucle",
"version": "1.0.0",
"description": "simple tailwindcss blog for jekyll",
"main": "postcss.config.js",
"scripts": {
"dev": "bundle exec jekyll serve --livereload",
"build:css": "postcss ./assets/scss/tailwind.scss -o ./assets/css/main.css",
"start": "npm run build:css && jekyll serve",
"build": "npm run build:css && jekyll build"
},
"dependencies": {
"autoprefixer": "^10.4.14",
"postcss": "^8.4.25",
"postcss-cli": "^10.1.0",
"postcss-scss": "^4.0.6",
"tailwindcss": "^3.3.2"
},
"devDependencies": {
"cssnano": "^6.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exaluc/boucle.git"
},
"keywords": [
"static",
"generator",
"jekyll",
"html",
"tailwindcss"
],
"author": "exaluc",
"license": "MIT",
"bugs": {
"url": "https://github.com/exaluc/boucle/issues"
},
"homepage": "https://github.com/exaluc/boucle#readme"
}