pronoun-monster/package.json
2023-03-16 00:40:19 -05:00

46 lines
1.4 KiB
JSON

{
"name": "pronoun-monster",
"version": "0.1.0",
"description": "Rawr, if you must refer to me this is how you may",
"main": "app.js",
"scripts": {
"postinstall": "mkdir ./dist",
"start": "concurrently npm:serve:*",
"build": "concurrently npm:build:*",
"serve:handlebars": "node app.js",
"serve:css": "tailwindcss -i ./src/app.css -o ./dist/app.css --watch",
"serve:svg": "nodemon --watch 'src/svgs/*' -e svg --exec 'npm run build:svg'",
"build:css": "tailwindcss -i ./src/app.css -o ./dist/app.css",
"build:svg": "svgdir2sprite ./src/svgs ./dist/spritesheet.svg",
"test": "ava",
"lint": "prettier --check .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/gaiety/pronoun-monster.git"
},
"author": "",
"license": "Unlicense",
"bugs": {
"url": "https://gitlab.com/gaiety/pronoun-monster/issues"
},
"homepage": "https://gitlab.com/gaiety/pronoun-monster#readme",
"type": "module",
"devDependencies": {
"ava": "^5.2.0",
"concurrently": "^7.6.0",
"express": "^4.18.2",
"express-handlebars": "^7.0.2",
"fs": "^0.0.1-security",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.21",
"prettier": "2.8.4",
"svgdir2sprite": "^1.0.5",
"tailwindcss": "^3.2.7"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}