snort/packages/app/package.json

127 lines
3.8 KiB
JSON
Raw Normal View History

2023-02-11 20:05:46 +00:00
{
"name": "@snort/app",
2024-01-26 13:14:18 +00:00
"version": "0.2.0",
2023-02-11 20:05:46 +00:00
"dependencies": {
2024-01-29 14:38:31 +00:00
"@here/maps-api-for-javascript": "^1.50.0",
2023-05-17 11:59:30 +00:00
"@noble/curves": "^1.0.0",
"@noble/hashes": "^1.3.3",
2023-07-13 21:44:26 +00:00
"@scure/base": "^1.1.1",
2023-05-17 22:02:43 +00:00
"@scure/bip32": "^1.3.0",
2023-03-10 19:02:43 +00:00
"@scure/bip39": "^1.1.1",
2023-07-13 21:44:26 +00:00
"@snort/shared": "workspace:*",
"@snort/system": "workspace:*",
"@snort/system-react": "workspace:*",
2023-09-22 19:28:56 +00:00
"@snort/system-wasm": "workspace:*",
2023-10-09 13:35:21 +00:00
"@snort/system-web": "workspace:*",
2024-04-11 12:26:50 +00:00
"@snort/wallet": "workspace:*",
2024-01-15 16:57:20 +00:00
"@snort/worker-relay": "workspace:*",
2023-02-11 20:05:46 +00:00
"@szhsin/react-menu": "^3.3.1",
2023-11-26 15:09:35 +00:00
"@uidotdev/usehooks": "^2.4.1",
"@void-cat/api": "^1.0.12",
2023-10-16 14:48:56 +00:00
"classnames": "^2.3.2",
2024-01-03 15:24:15 +00:00
"comlink": "^4.4.1",
"debug": "^4.3.4",
2023-06-15 11:03:05 +00:00
"dexie": "^3.2.4",
2023-07-13 21:44:26 +00:00
"emojilib": "^3.0.10",
2024-01-17 15:47:01 +00:00
"eventemitter3": "^5.0.1",
2023-11-24 13:50:40 +00:00
"fuse.js": "^7.0.0",
2023-10-07 10:30:05 +00:00
"highlight.js": "^11.8.0",
2024-01-29 14:38:31 +00:00
"latlon-geohash": "^2.0.0",
2023-02-11 20:05:46 +00:00
"light-bolt11-decoder": "^2.1.0",
2023-12-02 21:27:46 +00:00
"lottie-react": "^2.4.0",
2023-10-11 10:44:53 +00:00
"marked": "^9.1.0",
"marked-footnote": "^1.0.0",
2023-07-13 21:44:26 +00:00
"match-sorter": "^6.3.1",
2023-02-11 20:05:46 +00:00
"qr-code-styling": "^1.6.0-rc.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-force-graph-3d": "^1.24.0",
2023-02-11 20:05:46 +00:00
"react-intersection-observer": "^9.4.1",
2023-07-18 15:14:38 +00:00
"react-intl": "^6.4.4",
2023-02-11 20:05:46 +00:00
"react-router-dom": "^6.5.0",
2023-11-16 15:42:47 +00:00
"react-tag-input-component": "^2.0.2",
2023-02-11 20:05:46 +00:00
"react-textarea-autosize": "^8.4.0",
2023-10-09 13:35:21 +00:00
"recharts": "^2.8.0",
"three": "^0.157.0",
"typescript-lru-cache": "^2.0.0",
2023-10-06 13:17:28 +00:00
"use-long-press": "^3.2.0",
2023-09-22 15:55:26 +00:00
"use-sync-external-store": "^1.2.0",
2023-07-13 21:44:26 +00:00
"uuid": "^9.0.0",
"workbox-cacheable-response": "^7.0.0",
2023-02-11 20:05:46 +00:00
"workbox-core": "^6.4.2",
2023-12-26 19:33:22 +00:00
"workbox-expiration": "^7.0.0",
"workbox-precaching": "^7.0.0",
2023-02-11 20:05:46 +00:00
"workbox-routing": "^6.4.2",
2023-06-15 11:03:05 +00:00
"workbox-strategies": "^6.4.2"
2023-02-11 20:05:46 +00:00
},
"scripts": {
2023-11-17 11:52:10 +00:00
"start": "vite",
2023-11-20 12:22:52 +00:00
"build": "yarn eslint --fix && vite build",
2023-11-17 11:52:10 +00:00
"serve": "vite preview",
2023-11-21 08:10:20 +00:00
"test": "vitest run",
"test:watch": "vitest watch",
2023-02-18 21:28:28 +00:00
"intl-extract": "formatjs extract 'src/**/*.ts*' --ignore='**/*.d.ts' --out-file src/lang.json --flatten true",
"intl-compile": "formatjs compile src/lang.json --out-file src/translations/en.json",
2023-09-05 14:21:39 +00:00
"eslint": "eslint ."
2023-02-11 20:05:46 +00:00
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
2023-05-17 11:59:30 +00:00
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
2023-02-11 20:05:46 +00:00
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@formatjs/cli": "^6.1.3",
2023-11-17 11:52:10 +00:00
"@types/config": "^3.3.3",
"@types/debug": "^4.1.8",
2024-01-29 14:38:31 +00:00
"@types/latlon-geohash": "^2.0.3",
2023-07-13 21:44:26 +00:00
"@types/node": "^20.4.1",
2023-03-03 20:34:18 +00:00
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/three": "^0.157.2",
2023-11-20 21:33:11 +00:00
"@types/use-sync-external-store": "^0.0.4",
2023-07-13 21:44:26 +00:00
"@types/uuid": "^9.0.2",
2023-03-03 20:34:18 +00:00
"@types/webscopeio__react-textarea-autocomplete": "^4.7.2",
"@types/webtorrent": "^0.109.3",
2023-07-18 15:14:38 +00:00
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
2023-11-17 11:52:10 +00:00
"@vitejs/plugin-react": "^4.2.0",
2023-12-12 13:22:15 +00:00
"@webbtc/webln-types": "^2.1.0",
2023-03-03 20:34:18 +00:00
"@webscopeio/react-textarea-autocomplete": "^4.9.2",
2024-01-08 09:24:14 +00:00
"@welldone-software/why-did-you-render": "^8.0.1",
"autoprefixer": "^10.4.16",
2023-09-26 05:02:42 +00:00
"config": "^3.3.9",
"eslint": "^8.48.0",
"eslint-plugin-formatjs": "^4.11.3",
2024-01-04 09:38:19 +00:00
"eslint-plugin-react": "^7.33.2",
2024-01-04 09:54:58 +00:00
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
2024-01-04 17:01:18 +00:00
"eslint-plugin-simple-import-sort": "^10.0.0",
"postcss": "^8.4.31",
"postcss-preset-env": "^9.2.0",
2023-02-11 20:05:46 +00:00
"prettier": "2.8.3",
2023-07-13 21:44:26 +00:00
"prop-types": "^15.8.1",
2023-11-20 14:19:15 +00:00
"rollup-plugin-visualizer": "^5.9.2",
"tailwindcss": "^3.3.3",
2023-10-06 12:16:28 +00:00
"tinybench": "^2.5.1",
"typescript": "^5.2.2",
2024-04-11 12:26:50 +00:00
"vite": "^5.2.8",
2024-03-07 17:08:51 +00:00
"vite-plugin-pwa": "^0.19.2",
2023-11-21 08:10:20 +00:00
"vite-plugin-version-mark": "^0.0.10",
"vitest": "^0.34.6"
2023-02-11 20:05:46 +00:00
}
}