coracle/package.json

72 lines
2.2 KiB
JSON
Raw Normal View History

2022-11-23 01:28:33 +00:00
{
"name": "coracle",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
2023-02-11 14:49:08 +00:00
"dev": "vite --host",
2022-11-23 01:28:33 +00:00
"build": "vite build",
"preview": "vite preview",
"check:es": "eslint src/*/** --quiet",
"check:ts": "svelte-check --tsconfig ./tsconfig.json --threshold error",
2023-03-14 19:28:39 +00:00
"check:fmt": "prettier --check $(git diff head --name-only --diff-filter d | grep -E 'js|ts|svelte$' | xargs)",
"check": "run-p check:*",
2023-03-14 19:28:39 +00:00
"format": "prettier --write $(git diff head --name-only --diff-filter d | grep -E 'js|ts|svelte$' | xargs)",
2023-02-06 21:09:08 +00:00
"watch": "find src -type f | entr -r"
2022-11-23 01:28:33 +00:00
},
"devDependencies": {
2023-04-25 01:19:22 +00:00
"@capacitor/cli": "^4.7.3",
2022-11-23 01:28:33 +00:00
"@sveltejs/vite-plugin-svelte": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
2022-11-23 01:28:33 +00:00
"autoprefixer": "^10.4.13",
"eslint": "^8.33.0",
2022-11-23 01:28:33 +00:00
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.19",
2023-03-08 14:02:18 +00:00
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
"prettier-plugin-tailwindcss": "^0.2.4",
2022-11-23 01:28:33 +00:00
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5",
2023-02-11 20:59:09 +00:00
"vite": "^3.2.3",
"vite-plugin-mkcert": "^1.13.0"
2022-11-23 01:28:33 +00:00
},
"dependencies": {
2023-01-16 22:54:03 +00:00
"@bugsnag/js": "^7.18.0",
2023-04-25 01:19:22 +00:00
"@capacitor/android": "^4.7.3",
"@capacitor/core": "^4.7.3",
"@capacitor/ios": "^4.7.3",
2022-11-23 01:28:33 +00:00
"@fortawesome/fontawesome-free": "^6.2.1",
2023-07-03 12:24:51 +00:00
"@nostr-dev-kit/ndk": "^0.7.0",
"@scure/base": "^1.1.1",
2023-02-03 23:01:29 +00:00
"@tsconfig/svelte": "^3.0.0",
2022-11-23 01:28:33 +00:00
"classnames": "^2.3.2",
"compressorjs": "^1.1.1",
2022-11-23 01:28:33 +00:00
"fuse.js": "^6.6.2",
"hurdak": "github:ConsignCloud/hurdak",
2023-02-04 20:14:21 +00:00
"husky": "^8.0.3",
2023-06-19 12:46:14 +00:00
"insane": "^2.6.2",
2023-04-10 21:11:15 +00:00
"lokijs": "^1.5.12",
"lru-cache": "^7.18.3",
2023-06-19 12:46:14 +00:00
"marked": "^5.1.0",
2023-07-03 14:18:51 +00:00
"nostr-tools": "^1.12.1",
2023-02-06 16:41:48 +00:00
"npm-run-all": "^4.1.5",
"paravel": "^0.1.15",
2023-02-11 20:59:09 +00:00
"qr-scanner": "^1.4.2",
2023-02-11 14:49:08 +00:00
"qrcode": "^1.5.1",
2022-11-23 01:28:33 +00:00
"ramda": "^0.28.0",
"svelte": "^3.55.1",
2023-02-03 23:01:29 +00:00
"svelte-check": "^3.0.3",
2022-12-03 20:26:09 +00:00
"svelte-link-preview": "^0.3.3",
2022-12-01 04:47:53 +00:00
"svelte-loading-spinners": "^0.3.4",
2023-02-03 23:01:29 +00:00
"svelte-preprocess": "^5.0.1",
2023-02-18 17:54:06 +00:00
"svelte-range-slider-pips": "^2.1.1",
2023-07-03 16:04:01 +00:00
"svelte-routing": "^1.11.0",
2022-12-03 20:26:09 +00:00
"svelte-switch": "^0.0.5",
"throttle-debounce": "^5.0.0",
2023-02-28 20:02:20 +00:00
"tippy.js": "^6.3.7",
2023-02-27 21:44:05 +00:00
"vite-plugin-node-polyfills": "^0.5.0",
"vite-plugin-pwa": "^0.14.4"
2022-11-23 01:28:33 +00:00
}
}