feat: install node-sass, prettier and ignore some files

This commit is contained in:
Wiktoria Mielcarek 2021-02-19 15:45:15 +01:00
parent 7d2c5d39bb
commit cb12223f0d
5 changed files with 1489 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/node_modules

7
.prettierignore Normal file
View file

@ -0,0 +1,7 @@
# Ignore node Modules
/node_modules
# Ignore images
/images

6
.prettierrc.json Normal file
View file

@ -0,0 +1,6 @@
{
"tabWidth": 2,
"singleQuote": true,
"bracketSpacing": true,
"parser": "css"
}

1450
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

25
package.json Normal file
View file

@ -0,0 +1,25 @@
{
"name": "spectrumobsidianstylesheet",
"version": "1.0.0",
"private": true,
"description": "An Obsidian Theme",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"scss": "npx node-sass --output-style expanded SCSS/Spectrum.scss > development/Spectrum.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Braweria/Spectrum.git"
},
"author": "Wiktoria Mielcarek",
"license": "MIT",
"bugs": {
"url": "https://github.com/Braweria/Spectrum/issues"
},
"homepage": "https://github.com/Braweria/Spectrum#readme",
"dependencies": {
"node-sass": "^5.0.0",
"prettier": "^2.2.1"
}
}