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

43 lines
1.4 KiB
JSON
Raw Normal View History

2021-02-21 15:52:38 +00:00
{
"name": "vanillalist",
"version": "1.0.0",
"description": "A vanilla JS plugin repository",
2021-03-01 04:15:10 +00:00
"license": "Anti-Fascist MIT License",
2021-02-21 15:52:38 +00:00
"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",
2022-02-09 17:40:14 +00:00
"start": "npm run dev",
"dev": "npm-run-all build:sass --parallel watch:*",
2021-02-21 15:52:38 +00:00
"build": "npm-run-all build:sass build:eleventy"
},
"dependencies": {
2022-02-10 04:53:33 +00:00
"@orchidjs/sifter": "^0.9.0",
2022-02-09 17:40:14 +00:00
"autoprefixer": "^10.4.2",
2021-02-21 15:52:38 +00:00
"cross-env": "^7.0.3",
2022-02-09 17:40:14 +00:00
"cssnano": "^5.0.17",
2022-03-12 16:47:49 +00:00
"eleventy-plugin-sharp": "^0.1.0",
2021-02-21 15:52:38 +00:00
"npm-run-all": "^4.1.5",
2022-02-09 17:40:14 +00:00
"postcss-cli": "^9.1.0",
2022-02-10 04:53:33 +00:00
"sass": "^1.49.7"
2021-02-21 15:52:38 +00:00
},
"browserslist": [
"> 1%",
"not dead"
],
"devDependencies": {
2022-06-04 19:15:09 +00:00
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-plugin-rss": "^1.1.2",
2022-02-10 04:53:33 +00:00
"@stanzilla/stylelint-config-rational-order": "^0.1.3",
2022-02-09 17:40:14 +00:00
"glob": "^7.2.0",
"glob-promise": "^4.2.2",
"postcss": "^8.4.6",
2022-01-03 13:14:31 +00:00
"postcss-import": "^14.0.2",
2022-02-09 17:40:14 +00:00
"stylelint": "^14.4.0",
"stylelint-config-standard": "^25.0.0",
2022-02-10 04:53:33 +00:00
"stylelint-config-standard-scss": "^3.0.0"
2021-02-21 15:52:38 +00:00
}
}