Skip to content

Commit

Permalink
Create package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
nilandev authored Oct 27, 2023
1 parent bd6024e commit 669a499
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "niandev",
"version": "1.0.0",
"description": "Site description",
"main": "css/main.sass",
"scripts": {
"build": "npm run build-clean && npm run build-sass && npm run build-autoprefix",
"build-autoprefix": "postcss --use autoprefixer --output css/main.css css/main.css",
"build-clean": "rm css/main.css",
"build-sass": "node-sass --output-style compressed css/main.sass css/main.css",
"develop": "node-sass css/main.sass css/main.css",
"start": "npm run develop -- --watch"
},
"keywords": [
"css",
"sass",
"jekyll"
],
"author": "Nilanchala Panigrahy <[email protected]> (https://stacktips.com)",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.5.3",
"node-sass": "^3.11.3",
"postcss-cli": "^2.6.0"
}
}

0 comments on commit 669a499

Please sign in to comment.