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-03-12 12:00:08 +01:00

41 lines
1.4 KiB
JSON
Executable file

{
"name": "vanillalist",
"version": "1.0.0",
"description": "A vanilla JS plugin repository",
"license": "Anti-Fascist MIT License",
"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 dev",
"dev": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:sass build:eleventy"
},
"dependencies": {
"@11ty/eleventy": "^1.0.0",
"@orchidjs/sifter": "^0.9.0",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"cssnano": "^5.0.17",
"eleventy-plugin-sharp": "github:TixieBorg/eleventy-plugin-sharp",
"npm-run-all": "^4.1.5",
"postcss-cli": "^9.1.0",
"sass": "^1.49.7"
},
"browserslist": [
"> 1%",
"not dead"
],
"devDependencies": {
"@stanzilla/stylelint-config-rational-order": "^0.1.3",
"glob": "^7.2.0",
"glob-promise": "^4.2.2",
"postcss": "^8.4.6",
"postcss-import": "^14.0.2",
"stylelint": "^14.4.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0"
}
}