1
0
Fork 0
phanpy/package.json

86 lines
2.4 KiB
JSON
Raw Normal View History

2022-12-10 11:14:48 +02:00
{
"name": "phanpy",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
2024-02-15 11:53:35 +02:00
"fetch-instances": "env $(cat .env.local | grep -v \"#\" | xargs) node scripts/fetch-instances-list.js",
2023-01-05 04:50:36 +02:00
"sourcemap": "npx source-map-explorer dist/assets/*.js"
2022-12-10 11:14:48 +02:00
},
"dependencies": {
2024-01-29 15:11:19 +02:00
"@formatjs/intl-localematcher": "~0.5.4",
"@formatjs/intl-segmenter": "~11.5.5",
2023-11-09 17:59:20 +02:00
"@formkit/auto-animate": "~0.8.1",
2023-11-16 04:40:49 +02:00
"@github/text-expander-element": "~2.6.1",
2023-10-25 06:05:39 +03:00
"@iconify-icons/mingcute": "~1.2.9",
"@justinribeiro/lite-youtube": "~1.5.0",
2023-10-13 12:23:42 +03:00
"@szhsin/react-menu": "~4.1.0",
2023-10-25 06:05:39 +03:00
"@uidotdev/usehooks": "~2.4.1",
"compare-versions": "~6.1.0",
2023-09-29 16:02:09 +03:00
"dayjs": "~1.11.10",
"dayjs-twitter": "~0.5.0",
2022-12-10 11:14:48 +02:00
"fast-blurhash": "~1.1.2",
2024-01-06 06:31:25 +02:00
"fast-equals": "~5.0.1",
2024-03-02 05:23:23 +02:00
"html-prettify": "^1.0.7",
2023-05-07 14:34:48 +03:00
"idb-keyval": "~6.2.1",
2022-12-22 13:25:54 +02:00
"just-debounce-it": "~3.2.0",
2023-09-13 13:47:11 +03:00
"lz-string": "~1.5.0",
2024-03-23 09:00:13 +02:00
"masto": "~6.7.0",
"moize": "~6.1.6",
2023-12-24 17:58:05 +02:00
"p-retry": "~6.2.0",
2023-12-16 08:03:13 +02:00
"p-throttle": "~6.1.0",
2024-03-25 04:13:42 +02:00
"preact": "~10.20.1",
"punycode": "~2.3.1",
"react-hotkeys-hook": "~4.5.0",
2024-02-23 12:03:26 +02:00
"react-intersection-observer": "~9.8.1",
2023-11-23 10:59:39 +02:00
"react-quick-pinch-zoom": "~5.1.0",
"react-router-dom": "6.6.2",
"string-length": "6.0.0",
2023-11-23 10:59:39 +02:00
"swiped-events": "~1.1.9",
2022-12-26 08:02:05 +02:00
"toastify-js": "~1.12.0",
2023-04-02 10:19:09 +03:00
"uid": "~2.0.2",
2023-11-09 17:59:20 +02:00
"use-debounce": "~10.0.0",
2023-08-19 14:24:15 +03:00
"use-long-press": "~3.2.0",
"use-resize-observer": "~9.1.0",
2024-03-03 11:31:37 +02:00
"valtio": "1.13.2"
2022-12-10 11:14:48 +02:00
},
"devDependencies": {
2024-03-16 04:12:34 +02:00
"@preact/preset-vite": "~2.8.2",
2023-11-14 07:49:06 +02:00
"@trivago/prettier-plugin-sort-imports": "~4.3.0",
2024-03-23 09:00:13 +02:00
"postcss": "~8.4.38",
2024-02-15 08:59:11 +02:00
"postcss-dark-theme-class": "~1.2.1",
2024-04-05 12:13:29 +03:00
"postcss-preset-env": "~9.5.4",
"twitter-text": "~3.1.0",
2024-04-05 12:13:29 +03:00
"vite": "~5.2.8",
"vite-plugin-generate-file": "~0.1.1",
"vite-plugin-html-config": "~1.0.11",
2024-03-23 09:00:13 +02:00
"vite-plugin-pwa": "~0.19.7",
2023-12-04 09:10:34 +02:00
"vite-plugin-remove-console": "~2.2.0",
2023-06-04 14:13:17 +03: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 11:14:48 +02:00
},
"postcss": {
"plugins": {
"postcss-dark-theme-class": {},
2023-04-10 15:23:40 +03:00
"postcss-preset-env": {
"features": {
"logical-properties-and-values": false
}
}
2022-12-10 11:14:48 +02:00
}
2022-12-27 03:46:25 +02:00
},
"overrides": {
"vite": {
"rollup": ">=4.5.1"
}
},
2022-12-27 03:46:25 +02:00
"browserslist": [
"defaults",
"android >= 4"
]
2022-12-10 11:14:48 +02:00
}