mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2026-03-18 11:16:30 +01:00
chore: track package.json, package-lock.json, tsconfig.json for Docker build
This commit is contained in:
parent
0ccb05f792
commit
a0b7eec0b1
4 changed files with 1760 additions and 0 deletions
28
package.json
Normal file
28
package.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"name": "mtg-deckbuilder-web",
|
||||
"version": "1.0.0",
|
||||
"description": "MTG Commander/EDH Deckbuilder - Web UI",
|
||||
"scripts": {
|
||||
"build:css": "npx tailwindcss -i ./code/web/static/tailwind.css -o ./code/web/static/styles.css",
|
||||
"watch:css": "npx tailwindcss -i ./code/web/static/tailwind.css -o ./code/web/static/styles.css --watch",
|
||||
"build:ts": "npx tsc",
|
||||
"watch:ts": "npx tsc --watch",
|
||||
"build": "npm run build:css && npm run build:ts",
|
||||
"watch": "npm run watch:css & npm run watch:ts"
|
||||
},
|
||||
"keywords": [
|
||||
"mtg",
|
||||
"magic-the-gathering",
|
||||
"commander",
|
||||
"edh",
|
||||
"deckbuilder"
|
||||
],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^10.4.21",
|
||||
"postcss": "^8.5.6",
|
||||
"tailwindcss": "^3.4.18",
|
||||
"typescript": "^5.9.3"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue