1
0
Fork 0
mirror of https://github.com/GuerillaStudio/vanillalist.git synced 2024-10-22 17:37:29 +00:00
vanillalist/package.json
2022-01-03 15:29:01 +01:00

37 lines
1.2 KiB
JSON
Executable file

{
"name": "vanillalist",
"version": "1.0.0",
"description": "A vanilla JS plugin repository",
"scripts": {
"watch:sass": "sass --no-source-map --watch src/sass/style.scss:public/css/style.css",
"watch:eleventy": "eleventy --serve",
"build:sass": "sass --no-source-map src/sass/style.scss:public/css/style.css",
"build:eleventy": "eleventy",
"postbuild": "postcss public/css/*.css -u autoprefixer cssnano -r --no-map",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:sass build:eleventy"
},
"dependencies": {
"@11ty/eleventy": "^0.11.1",
"autoprefixer": "^9.8.6",
"cross-env": "^7.0.3",
"cssnano": "^4.1.10",
"eleventy-plugin-sharp": "0.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.6",
"postcss-cli": "^8.3.1",
"sass": "^1.32.7",
"sifter": "^0.0.5"
},
"browserslist": [
"> 1%",
"not dead"
],
"devDependencies": {
"glob": "^7.1.6",
"glob-promise": "^4.0.1",
"stylelint": "^13.11.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-order": "^4.1.0"
}
}