btclock-webui/package.json

72 lines
2.1 KiB
JSON
Raw Permalink Normal View History

2023-11-17 01:05:35 +01:00
{
"name": "btclock",
"version": "0.0.1",
"private": true,
"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",
"lint": "prettier --check . && eslint .",
2023-11-17 19:10:46 +01:00
"format": "prettier --write .",
2023-11-23 02:04:20 +01:00
"postinstall": "patch-package",
"test": "npm run test:integration && npm run test:unit",
"test:integration": "playwright test",
"test:unit": "vitest"
2023-11-17 01:05:35 +01:00
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.1",
2024-09-03 12:11:14 +02:00
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
2023-11-23 02:04:20 +01:00
"@sveltejs/vite-plugin-svelte": "^3.0.1",
2024-09-03 11:10:49 +02:00
"@testing-library/svelte": "^5.2.1",
2023-11-17 01:05:35 +01:00
"@types/swagger-ui": "^3.52.4",
2024-09-25 00:53:52 +02:00
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitest/ui": "^2.0.5",
2024-09-25 00:53:52 +02:00
"eslint": "^9.11.0",
2024-09-03 12:11:14 +02:00
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"jsdom": "^25.0.0",
2024-09-25 00:53:52 +02:00
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"sass": "^1.79.3",
"svelte": "^4.2.19",
"svelte-check": "^4.0.2",
"svelte-preprocess": "^6.0.2",
"tslib": "^2.7.0",
2024-09-03 12:11:14 +02:00
"typescript": "^5.5.4",
2024-09-25 00:53:52 +02:00
"typescript-eslint": "^8.7.0",
"vite": "^5.4.7",
"vitest": "^2.1.1",
2023-11-23 02:41:58 +01:00
"vitest-github-actions-reporter": "^0.11.0"
2023-11-17 01:05:35 +01:00
},
"type": "module",
"dependencies": {
2024-09-25 00:53:52 +02:00
"@fontsource/antonio": "^5.1.0",
"@fontsource/oswald": "^5.1.0",
"@fontsource/ubuntu": "^5.1.0",
2024-07-11 17:34:12 +02:00
"@noble/secp256k1": "^2.1.0",
"@playwright/test": "^1.46.0",
"@popperjs/core": "^2.11.8",
2024-09-03 12:11:14 +02:00
"@sveltestrap/sveltestrap": "^6.2.7",
2024-09-03 11:10:49 +02:00
"@testing-library/jest-dom": "^6.5.0",
2024-09-25 00:53:52 +02:00
"bootstrap": "^5.3.3",
2024-09-03 01:07:23 +02:00
"bootstrap-icons": "^1.11.3",
2024-09-18 01:49:18 +02:00
"msgpack-es": "^0.0.5",
2024-07-11 17:34:12 +02:00
"nostr-tools": "^2.7.1",
2023-11-17 19:10:46 +01:00
"patch-package": "^8.0.0",
"svelte-i18n": "^4.0.0"
2024-07-29 20:10:26 +02:00
},
"resolutions": {
2024-09-03 11:20:07 +02:00
"es5-ext": ">=0.10.64",
"undici": ">=5.28.4",
"ws": ">=8.18.0",
"axios": ">=1.7.7",
"micromatch": ">=4.0.8"
},
2024-07-29 20:10:26 +02:00
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
2023-11-17 01:05:35 +01:00
}