Füge .gitignore und package.json für das Projekt hinzu

This commit is contained in:
2026-02-22 10:32:45 +01:00
parent b537638f94
commit 41196f8530
2 changed files with 30 additions and 0 deletions

22
.gitignore vendored Normal file
View File

@@ -0,0 +1,22 @@
# Dependencies
node_modules/
# Logs
*.log
npm-debug.log*
# Environment
.env
.env.local
# Editor
.vscode/*
!.vscode/launch.json
.idea/
*.suo
*.user
# OS
.DS_Store
Thumbs.db
desktop.ini

8
package.json Normal file
View File

@@ -0,0 +1,8 @@
{
"name": "chooser-app",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "npx serve -l 8080 ."
}
}