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

39 lines
1.2 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"
},
"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",
"nodemon": "^2.0.21",
"prettier": "2.8.4",
"svgdir2sprite": "^1.0.5",
"tailwindcss": "^3.2.7"
}
}