-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
36 lines (36 loc) · 1020 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "starbase-80",
"displayName": "Starbase 80",
"homepage": "https://www.starbase80.dev/",
"repository": {
"url": "https://github.com/notclickable-jordan/starbase-80/"
},
"version": "1.4.0",
"type": "commonjs",
"scripts": {
"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"
},
"dependencies": {
"@types/node": "^20.10.5",
"clean-css": "^5.3.3",
"html-minifier": "^4.0.0",
"prettier": "^3.1.1",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.3"
},
"prettier": {
"arrowParens": "avoid",
"jsxBracketSameLine": true,
"printWidth": 120,
"semi": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": true
},
"devDependencies": {
"@types/clean-css": "^4.2.11"
}
}