starbase-81/package.json

37 lines
1020 B
JSON
Raw Permalink Normal View History

2023-04-19 21:40:25 +00:00
{
2023-04-21 14:56:51 +00:00
"name": "starbase-80",
"displayName": "Starbase 80",
"homepage": "https://www.starbase80.dev/",
2023-04-21 14:56:51 +00:00
"repository": {
"url": "https://github.com/notclickable-jordan/starbase-80/"
2023-04-21 14:56:51 +00:00
},
2023-12-18 06:22:05 +00:00
"version": "1.4.0",
"type": "commonjs",
2023-04-19 21:46:57 +00:00
"scripts": {
2023-12-18 20:21:08 +00:00
"build": "tsc && node ./dist/index.js && npm run html && npm run tailwind && npm run css-cache-break",
"html": "html-minifier --remove-comments --collapse-whitespace --input-dir ./public --output-dir ./public --file-ext html",
"tailwind": "npx tailwindcss -i ./src/tailwind.css -o ./public/main.css",
"css-cache-break": "node ./dist/css-cache-break.js"
2023-04-19 21:46:57 +00:00
},
"dependencies": {
2023-12-18 17:49:33 +00:00
"@types/node": "^20.10.5",
2023-12-18 20:21:08 +00:00
"clean-css": "^5.3.3",
"html-minifier": "^4.0.0",
"prettier": "^3.1.1",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.3"
2023-04-19 21:46:57 +00:00
},
"prettier": {
"arrowParens": "avoid",
"jsxBracketSameLine": true,
"printWidth": 120,
"semi": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": true
2023-12-18 20:21:08 +00:00
},
"devDependencies": {
"@types/clean-css": "^4.2.11"
2023-04-19 21:46:57 +00:00
}
2023-04-19 21:40:25 +00:00
}