-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.02 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.02 KB
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
{
"name": "BLEU-Website",
"version": "1.0.0",
"description": "BLEU Community Blog - Open-source, community-driven Programming, Software Enginnering, and Computer Science",
"type": "commonjs",
"scripts": {
"build:css": "tailwindcss -i ./src/assets/css/input.css -o ./_site/assets/css/style.css --minify",
"watch:css": "tailwindcss -i ./src/assets/css/input.css -o ./_site/assets/css/style.css --watch",
"build:11ty": "eleventy",
"watch:11ty": "eleventy --serve",
"build": "npm run build:css && npm run build:11ty",
"dev": "npm-run-all --parallel watch:*",
"clean": "rm -rf _site"
},
"keywords": [
"blog",
"eleventy",
"bleu",
"community"
],
"author": "BLEU Community",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-fetch": "^4.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"autoprefixer": "^10.4.18",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"postcss-cli": "^11.0.0",
"tailwindcss": "^3.4.1"
}
}