coracle/package.json

52 lines
1.5 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": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
2023-02-06 16:41:48 +00:00
"qa:lint": "eslint src/*/** --quiet",
"qa:check": "svelte-check --tsconfig ./tsconfig.json --threshold error",
"qa:all": "run-p qa:lint qa:check",
2023-02-06 21:09:08 +00:00
"watch": "find src -type f | entr -r"
2022-11-23 01:28:33 +00:00
},
"devDependencies": {
"@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",
"svelte": "^3.52.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5",
2022-11-23 01:28:33 +00:00
"vite": "^3.2.3"
},
"dependencies": {
2023-01-16 22:54:03 +00:00
"@bugsnag/js": "^7.18.0",
2022-11-23 01:28:33 +00:00
"@fortawesome/fontawesome-free": "^6.2.1",
"@noble/secp256k1": "^1.7.0",
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
"dexie": "^3.2.2",
"fuse.js": "^6.6.2",
"hurdak": "github:ConsignCloud/hurdak",
2023-02-04 20:14:21 +00:00
"husky": "^8.0.3",
2023-02-04 13:08:42 +00:00
"nostr-tools": "^1.2.1",
2023-02-06 16:41:48 +00:00
"npm-run-all": "^4.1.5",
2022-11-23 01:28:33 +00:00
"ramda": "^0.28.0",
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",
"svelte-routing": "^1.6.0",
2022-12-03 20:26:09 +00:00
"svelte-switch": "^0.0.5",
"throttle-debounce": "^5.0.0",
"vite-plugin-node-polyfills": "^0.5.0"
2022-11-23 01:28:33 +00:00
}
}