This repository has been archived on 2023-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
personal-website-old/package.json
Laureηt fa485e220d
feat: reworked the layout system
feat: css now inline to improve performance
feat: now using 11ty 1.0.0-beta to use addGlobalData
2021-10-10 18:29:22 +02:00

25 lines
801 B
JSON
Executable file

{
"name": "personnal-website",
"version": "1.1.0",
"author": "Laureηt <laurentfainsin@protonmail.com>",
"license": "MIT",
"scripts": {
"watch:sass": "sass --no-source-map --watch src/scss:src/_includes/css",
"watch:eleventy": "eleventy --serve",
"build:sass": "sass --no-source-map --style compressed src/scss:src/_includes/css",
"build:eleventy": "ELEVENTY_ENV=prod eleventy",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:sass build:eleventy"
},
"dependencies": {
"@11ty/eleventy": "^1.0.0-beta.2",
"@11ty/eleventy-navigation": "^0.2.0",
"chaffle": "^2.1.0",
"html-minifier": "^4.0.0",
"markdown-it": "^12.2.0",
"markdown-it-attrs": "^4.1.0",
"npm-run-all": "^4.1.5",
"sass": "^1.42.1"
}
}