-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.05 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
28
29
30
31
32
33
{
"name": "riccardo-margiotta",
"description": "A static site for my blog, built with eleventy.",
"repository": {
"type": "git",
"url": "https://github.com/RiccardoMargiotta/Riccardo-Margiotta"
},
"author": "Riccardo Margiotta",
"license": "ISC",
"scripts": {
"dev": "yarn start",
"start": "run-p watch:sass watch:eleventy",
"watch:eleventy": "eleventy --serve --quiet",
"watch:sass": "sass --watch src/assets/stylesheets:dist/assets/stylesheets",
"build": "run-s clean build:sass build:eleventy",
"clean": "rm -rf dist",
"build:eleventy": "eleventy",
"build:sass": "sass src/assets/stylesheets:dist/assets/stylesheets",
"postbuild": "postcss --replace 'dist/**/*.css'",
"prettier": "prettier ./**/* --write"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.40",
"postcss-cli": "^11.0.0",
"prettier": "^3.3.3",
"sass": "^1.77.8"
}
}