phanpy/package.json

77 wiersze
2.2 KiB
JSON
Czysty Zwykły widok Historia

2022-12-10 09:14:48 +00:00
{
"name": "phanpy",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
2022-12-19 06:49:25 +00:00
"fetch-instances": "env $(cat .env.dev | grep -v \"#\" | xargs) node scripts/fetch-instances-list.js",
2023-01-05 02:50:36 +00:00
"sourcemap": "npx source-map-explorer dist/assets/*.js"
2022-12-10 09:14:48 +00:00
},
"dependencies": {
2023-09-12 12:54:40 +00:00
"@formatjs/intl-localematcher": "~0.4.2",
2023-10-23 00:42:40 +00:00
"@formkit/auto-animate": "~0.8.0",
2023-06-16 06:30:44 +00:00
"@github/text-expander-element": "~2.5.0",
2023-09-29 13:02:09 +00:00
"@iconify-icons/mingcute": "~1.2.8",
"@justinribeiro/lite-youtube": "~1.5.0",
2023-10-13 09:23:42 +00:00
"@szhsin/react-menu": "~4.1.0",
"@uidotdev/usehooks": "~2.4.0",
2023-09-29 13:02:09 +00:00
"dayjs": "~1.11.10",
"dayjs-twitter": "~0.5.0",
2022-12-10 09:14:48 +00:00
"fast-blurhash": "~1.1.2",
"fast-deep-equal": "~3.1.3",
2023-05-07 11:34:48 +00:00
"idb-keyval": "~6.2.1",
2022-12-22 11:25:54 +00:00
"just-debounce-it": "~3.2.0",
2023-09-13 10:47:11 +00:00
"lz-string": "~1.5.0",
"masto": "~6.3.1",
"moize": "~6.1.6",
2023-09-29 13:02:09 +00:00
"p-retry": "~6.1.0",
2023-05-21 05:35:01 +00:00
"p-throttle": "~5.1.0",
2023-10-01 09:53:04 +00:00
"preact": "~10.18.1",
2023-07-06 12:39:49 +00:00
"react-hotkeys-hook": "~4.4.1",
"react-intersection-observer": "~9.5.2",
2023-10-06 10:12:37 +00:00
"react-quick-pinch-zoom": "~5.0.0",
"react-router-dom": "6.6.2",
"string-length": "5.0.1",
2022-12-28 11:43:02 +00:00
"swiped-events": "~1.1.7",
2022-12-26 06:02:05 +00:00
"toastify-js": "~1.12.0",
2023-04-02 07:19:09 +00:00
"uid": "~2.0.2",
2023-04-27 02:18:24 +00:00
"use-debounce": "~9.0.4",
2023-08-19 11:24:15 +00:00
"use-long-press": "~3.2.0",
"use-resize-observer": "~9.1.0",
"valtio": "1.9.0"
2022-12-10 09:14:48 +00:00
},
"devDependencies": {
2023-10-15 08:25:18 +00:00
"@preact/preset-vite": "~2.6.0",
2023-08-01 06:27:11 +00:00
"@trivago/prettier-plugin-sort-imports": "~4.2.0",
2023-09-29 13:02:09 +00:00
"postcss": "~8.4.31",
2023-08-19 11:24:15 +00:00
"postcss-dark-theme-class": "~1.0.0",
2023-10-13 09:23:42 +00:00
"postcss-preset-env": "~9.2.0",
"twitter-text": "~3.1.0",
2023-10-06 10:12:37 +00:00
"vite": "~4.4.11",
2023-02-28 07:27:42 +00:00
"vite-plugin-generate-file": "~0.0.4",
"vite-plugin-html-config": "~1.0.11",
2023-09-09 09:36:15 +00:00
"vite-plugin-pwa": "~0.16.5",
2023-04-27 02:18:24 +00:00
"vite-plugin-remove-console": "~2.1.1",
2023-06-04 11:13:17 +00:00
"workbox-cacheable-response": "~7.0.0",
"workbox-expiration": "~7.0.0",
"workbox-routing": "~7.0.0",
"workbox-strategies": "~7.0.0"
2022-12-10 09:14:48 +00:00
},
"postcss": {
"plugins": {
"postcss-dark-theme-class": {},
2023-04-10 12:23:40 +00:00
"postcss-preset-env": {
"features": {
"logical-properties-and-values": false
}
}
2022-12-10 09:14:48 +00:00
}
2022-12-27 01:46:25 +00:00
},
"browserslist": [
"defaults",
"android >= 4"
]
2022-12-10 09:14:48 +00:00
}