mirror of
https://github.com/jlengrand/tailwind-app.git
synced 2026-03-10 08:41:23 +00:00
28 lines
872 B
JSON
28 lines
872 B
JSON
{
|
|
"scripts": {
|
|
"build": "rimraf dist && tsc && rollup -c rollup.config.js",
|
|
"start:build": "npm run build && web-dev-server --root-dir dist --app-index index.html --open --compatibility none",
|
|
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
|
|
"css": "npx tailwindcss-cli@latest build -o tailwind.css"
|
|
},
|
|
"devDependencies": {
|
|
"@open-wc/building-rollup": "^1.0.0",
|
|
"@web/dev-server": "^0.1.1",
|
|
"concurrently": "^5.3.0",
|
|
"deepmerge": "^4.2.2",
|
|
"rimraf": "^2.6.3",
|
|
"rollup": "^2.3.4",
|
|
"tslib": "^2.0.3",
|
|
"typescript": "^4.1.3"
|
|
},
|
|
"name": "tailwind-app",
|
|
"version": "0.0.0",
|
|
"description": "Webcomponent tailwind-app following open-wc recommendations",
|
|
"author": "tailwind-app",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"lit-element": "^2.0.1",
|
|
"lit-html": "^1.0.0"
|
|
}
|
|
}
|