-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from ortwic/develop
Develop 0.3.0
- Loading branch information
Showing
99 changed files
with
9,231 additions
and
3,399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,6 @@ dev-dist | |
*.local | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.firebase | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"i18n-ally.localesPaths": [ | ||
"src/data/lang" | ||
], | ||
"i18n-ally.keystyle": "nested" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,65 @@ | ||
{ | ||
"name": "vite-project", | ||
"description": "An app for musicians to keep an overview of their personal song repertoire.", | ||
"version": "0.3.0 beta", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"preinstall": "npx only-allow pnpm", | ||
"dev": "vite", | ||
"fix": "pnpm exec eslint --fix \"{,!(node_modules|public)/**/}*.{ts,svelte}\"", | ||
"format": "pnpm exec prettier --write \"{,!(node_modules|public)/**/}*.{ts,svelte}\"", | ||
"build": "vite build", | ||
"deploy": "vite build && firebase deploy -f", | ||
"preview": "vite preview", | ||
"mobile": "ngrok http 5173", | ||
"check": "svelte-check --tsconfig ./tsconfig.json", | ||
"test:unit": "vitest" | ||
}, | ||
"devDependencies": { | ||
"@sveltejs/vite-plugin-svelte": "^2.0.3", | ||
"@googleapis/blogger": "^1.1.1", | ||
"@sveltejs/vite-plugin-svelte": "^2.4.5", | ||
"@testing-library/jest-dom": "^5.16.5", | ||
"@testing-library/svelte": "^3.2.2", | ||
"@testing-library/user-event": "^14.4.3", | ||
"@tsconfig/svelte": "^3.0.0", | ||
"@types/color": "^3.0.3", | ||
"@types/lodash": "^4.14.192", | ||
"@types/marked": "^5.0.0", | ||
"@types/tabulator-tables": "^5.4.6", | ||
"@typescript-eslint/eslint-plugin": "^5.50.0", | ||
"@types/tabulator-tables": "^5.4.10", | ||
"@typescript-eslint/eslint-plugin": "^6.1.0", | ||
"@typescript-eslint/parser": "^6.1.0", | ||
"@vitest/coverage-v8": "^0.32.2", | ||
"color": "^4.2.3", | ||
"eslint": "^8.44.0", | ||
"eslint-config-standard-with-typescript": "^36.0.0", | ||
"eslint-plugin-import": "^2.25.2", | ||
"eslint-plugin-n": "^15.0.0", | ||
"eslint-plugin-promise": "^6.0.0", | ||
"eslint-plugin-svelte3": "^4.0.0", | ||
"eslint-plugin-svelte": "^2.32.2", | ||
"fecha": "^4.2.3", | ||
"firebase": "^9.18.0", | ||
"jsdom": "^22.1.0", | ||
"jspdf": "^2.5.1", | ||
"jspdf-autotable": "^3.5.30", | ||
"marked": "^5.1.1", | ||
"nanoid": "^4.0.2", | ||
"prettier": "^3.0.0", | ||
"prettier-plugin-svelte": "^2.10.1", | ||
"rxfire": "^6.0.3", | ||
"rxjs": "^7.8.0", | ||
"svelte": "^3.57.0", | ||
"svelte-check": "^2.10.3", | ||
"tabulator-tables": "^5.5.0", | ||
"simple-svelte-autocomplete": "^2.5.2", | ||
"svelte": "^4.2.0", | ||
"svelte-check": "^3.4.6", | ||
"svelte-eslint-parser": "^0.32.1", | ||
"svelte-i18n": "^3.7.0", | ||
"svelte-preprocess-sass": "^2.0.1", | ||
"svelte-spa-router": "^3.3.0", | ||
"tabulator-tables": "^5.5.1", | ||
"tslib": "^2.5.0", | ||
"typescript": "^4.9.5", | ||
"vite": "^4.2.0", | ||
"vite-plugin-pwa": "^0.15.1", | ||
"vitest": "^0.32.2" | ||
"typescript": "^5.1.6", | ||
"vite": "^4.4.4", | ||
"vite-plugin-pwa": "^0.16.4", | ||
"vitest": "^0.33.0" | ||
} | ||
} |
Oops, something went wrong.