-
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.
ci(tests): configure pipelines for automated testing
- Loading branch information
1 parent
6249415
commit d068b0b
Showing
5 changed files
with
830 additions
and
131 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 |
---|---|---|
@@ -1,67 +1,71 @@ | ||
{ | ||
"name": "firefly-iii-svelte", | ||
"version": "0.0.1", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite dev", | ||
"build": "vite build", | ||
"preview": "vite preview", | ||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", | ||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", | ||
"test": "vitest", | ||
"lint": "prettier --plugin-search-dir . --check . && eslint .", | ||
"format": "prettier --plugin-search-dir . --write .", | ||
"api:generate": "openapi-generator-cli generate -g typescript-fetch -i ./src/lib/api/firefly-iii-2.0.10-v1.yaml -o ./src/lib/api" | ||
}, | ||
"dependencies": { | ||
"@iconify/svelte": "^3.1.4", | ||
"@popperjs/core": "^2.11.8", | ||
"@tanstack/svelte-query": "^4.36.1", | ||
"ag-grid-community": "^30.2.0", | ||
"ag-grid-svelte": "^0.3.0", | ||
"chart.js": "^4.4.0", | ||
"d3-scale-chromatic": "^3.0.0", | ||
"dayjs": "^1.11.10", | ||
"flowbite": "^2.0.0", | ||
"flowbite-svelte": "^0.44.19", | ||
"svelte-chartjs": "^3.1.2", | ||
"svelte-modals": "^1.3.0", | ||
"tailwind-merge": "^2.0.0", | ||
"ts-pattern": "^5.0.5" | ||
}, | ||
"devDependencies": { | ||
"@openapitools/openapi-generator-cli": "^2.7.0", | ||
"@playwright/test": "^1.39.0", | ||
"@sveltejs/adapter-auto": "^2.1.0", | ||
"@sveltejs/adapter-static": "^2.0.3", | ||
"@sveltejs/kit": "^1.25.2", | ||
"@tailwindcss/forms": "0.5.6", | ||
"@tailwindcss/typography": "0.5.10", | ||
"@trivago/prettier-plugin-sort-imports": "^4.3.0", | ||
"@types/d3-scale-chromatic": "^3.0.1", | ||
"@types/node": "20.8.6", | ||
"@typescript-eslint/eslint-plugin": "^6.7.5", | ||
"@typescript-eslint/parser": "^6.7.5", | ||
"autoprefixer": "10.4.16", | ||
"dotenv": "^16.3.1", | ||
"eslint": "^8.51.0", | ||
"eslint-config-prettier": "^8.10.0", | ||
"eslint-plugin-no-relative-import-paths": "^1.5.3", | ||
"eslint-plugin-svelte": "^2.34.0", | ||
"eslint-plugin-unused-imports": "^3.0.0", | ||
"postcss": "8.4.31", | ||
"prettier": "^2.8.8", | ||
"prettier-plugin-svelte": "^2.10.1", | ||
"resolve": "^1.22.8", | ||
"svelte": "^4.2.1", | ||
"svelte-check": "^3.5.2", | ||
"svelte-headless-table": "^0.17.7", | ||
"tailwindcss": "3.3.3", | ||
"tslib": "^2.6.2", | ||
"typescript": "^5.2.2", | ||
"vite": "^4.4.11", | ||
"vite-plugin-tailwind-purgecss": "0.1.3", | ||
"vitest": "^0.34.6" | ||
} | ||
"name": "firefly-iii-svelte", | ||
"version": "0.0.1", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite dev", | ||
"build": "vite build", | ||
"preview": "vite preview", | ||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", | ||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", | ||
"test:integration": "playwright test", | ||
"test:unit": "vitest", | ||
"test": "run-s test:integration test:unit", | ||
"lint": "prettier --plugin-search-dir . --check . && eslint .", | ||
"format": "prettier --plugin-search-dir . --write .", | ||
"api:generate": "openapi-generator-cli generate -g typescript-fetch -i ./src/lib/api/firefly-iii-2.0.10-v1.yaml -o ./src/lib/api" | ||
}, | ||
"dependencies": { | ||
"@iconify/svelte": "^3.1.4", | ||
"@popperjs/core": "^2.11.8", | ||
"@tanstack/svelte-query": "^4.36.1", | ||
"ag-grid-community": "^30.2.0", | ||
"ag-grid-svelte": "^0.3.0", | ||
"chart.js": "^4.4.0", | ||
"d3-scale-chromatic": "^3.0.0", | ||
"dayjs": "^1.11.10", | ||
"flowbite": "^2.0.0", | ||
"flowbite-svelte": "^0.44.19", | ||
"svelte-chartjs": "^3.1.2", | ||
"svelte-modals": "^1.3.0", | ||
"tailwind-merge": "^2.0.0", | ||
"ts-pattern": "^5.0.5" | ||
}, | ||
"devDependencies": { | ||
"@openapitools/openapi-generator-cli": "^2.7.0", | ||
"@playwright/test": "^1.39.0", | ||
"@sveltejs/adapter-auto": "^2.1.0", | ||
"@sveltejs/adapter-static": "^2.0.3", | ||
"@sveltejs/kit": "^1.25.2", | ||
"@tailwindcss/forms": "0.5.6", | ||
"@tailwindcss/typography": "0.5.10", | ||
"@trivago/prettier-plugin-sort-imports": "^4.3.0", | ||
"@types/d3-scale-chromatic": "^3.0.1", | ||
"@types/node": "20.8.6", | ||
"@typescript-eslint/eslint-plugin": "^6.7.5", | ||
"@typescript-eslint/parser": "^6.7.5", | ||
"autoprefixer": "10.4.16", | ||
"dotenv": "^16.3.1", | ||
"eslint": "^8.51.0", | ||
"eslint-config-prettier": "^8.10.0", | ||
"eslint-plugin-no-relative-import-paths": "^1.5.3", | ||
"eslint-plugin-svelte": "^2.34.0", | ||
"eslint-plugin-unused-imports": "^3.0.0", | ||
"npm-run-all": "^4.1.5", | ||
"postcss": "8.4.31", | ||
"prettier": "^2.8.8", | ||
"prettier-plugin-svelte": "^2.10.1", | ||
"resolve": "^1.22.8", | ||
"svelte": "^4.2.1", | ||
"svelte-check": "^3.5.2", | ||
"svelte-headless-table": "^0.17.7", | ||
"tailwindcss": "3.3.3", | ||
"tslib": "^2.6.2", | ||
"typescript": "^5.2.2", | ||
"vite": "^4.4.11", | ||
"vite-plugin-tailwind-purgecss": "0.1.3", | ||
"vitest": "^0.34.6", | ||
"vitest-github-actions-reporter": "^0.10.0" | ||
} | ||
} |
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
Oops, something went wrong.