1
0
Fork 0
dailysh.it/package.json

42 lines
1.1 KiB
JSON

{
"name": "nls-parcel-dailyshit",
"version": "1.0.0-0",
"description": "",
"main": "index.pug",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel --public-url / index.pug --open",
"build": "parcel build index.pug --no-minify",
"format": "npx prettier --write src/**/*.pug index.pug package.json && npx prettier --write --parser json .pugrc",
"deploy": "make deploy"
},
"author": "Michael Werner Czechowski <mail@dailysh.it>",
"license": "Apache-2.0",
"devDependencies": {
"@prettier/plugin-pug": "^3.1.0",
"parcel-bundler": "^1.10.3",
"prettier": "^3.3.3",
"pug": "^3.0.3",
"sass": "^1.16.0",
"typescript": "^3.2.1"
},
"prettier": {
"singleQuote": false,
"tabWidth": 4,
"semi": true,
"arrowParens": "always",
"useTabs": true,
"jsxSingleQuote": false,
"bracketSpacing": false,
"printWidth": 160,
"trailingComma": "all",
"bracketSameLine": false,
"htmlWhitespaceSensitivity": "strict",
"proseWrap": "never",
"singleAttributePerLine": false,
"plugins": [
"@prettier/plugin-pug"
]
}
}