yacd/package.json

108 lines
3 KiB
JSON
Raw Normal View History

2018-10-20 20:32:02 +08:00
{
"name": "yacd",
2022-11-11 22:47:39 +08:00
"version": "0.3.8",
2018-10-20 20:32:02 +08:00
"description": "Yet another Clash dashboard",
"prettier": {
"printWidth": 100,
"singleQuote": true
},
2018-10-20 20:32:02 +08:00
"scripts": {
"lint": "eslint --fix --cache src",
2021-05-30 16:33:27 +08:00
"dev": "vite",
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"pretty": "prettier --write 'src/**/*.{js,scss,ts,tsx,md}'",
"fmt": "pnpm lint && pnpm pretty"
2018-10-20 20:32:02 +08:00
},
2019-12-27 16:32:24 +08:00
"browserslist": [
">0.25%",
"not ie 11",
"not op_mini all"
],
"keywords": [
"react",
"clash"
2019-12-27 16:32:24 +08:00
],
"author": "Haishan <haishanhan@gmail.com> (https://haishan.me)",
2018-10-20 20:32:02 +08:00
"private": true,
2019-07-06 17:44:25 +08:00
"license": "MIT",
2018-10-20 20:32:02 +08:00
"dependencies": {
2023-01-18 15:57:37 +08:00
"@babel/runtime": "7.20.7",
2022-08-27 14:38:55 +08:00
"@fontsource/roboto-mono": "4.5.8",
2022-11-07 16:56:06 +08:00
"@reach/menu-button": "0.18.0",
"@reach/tooltip": "0.18.0",
"@reach/visually-hidden": "0.18.0",
2023-01-18 15:57:37 +08:00
"@tanstack/react-query": "4.22.0",
"chart.js": "4.1.2",
2022-07-03 11:41:42 +08:00
"clsx": "^1.2.1",
2023-01-18 15:57:37 +08:00
"core-js": "3.27.1",
2022-11-07 16:56:06 +08:00
"date-fns": "2.29.3",
2023-01-18 15:57:37 +08:00
"framer-motion": "8.4.6",
"history": "5.3.0",
2023-01-18 15:57:37 +08:00
"i18next": "22.4.9",
2022-11-07 16:56:06 +08:00
"i18next-browser-languagedetector": "7.0.1",
2023-01-18 15:57:37 +08:00
"i18next-http-backend": "2.1.1",
"immer": "9.0.18",
2019-01-04 00:22:51 +08:00
"invariant": "^2.2.4",
2021-02-28 11:51:29 +08:00
"lodash-es": "^4.17.21",
2021-11-12 18:03:18 +08:00
"memoize-one": "6.0.0",
2021-05-30 16:33:27 +08:00
"modern-normalize": "1.1.0",
2022-06-15 16:15:50 +08:00
"react": "18.2.0",
"react-dom": "18.2.0",
2022-06-05 23:39:51 +08:00
"react-feather": "^2.0.10",
2023-01-18 15:57:37 +08:00
"react-i18next": "12.1.4",
"react-icons": "4.7.1",
2022-11-07 16:56:06 +08:00
"react-modal": "3.16.1",
2023-01-18 15:57:37 +08:00
"react-router": "6.6.2",
"react-router-dom": "6.6.2",
2022-06-12 08:50:22 +08:00
"react-switch": "^7.0.0",
2022-06-05 23:39:51 +08:00
"react-table": "7.8.0",
2023-01-18 15:57:37 +08:00
"react-tabs": "6.0.0",
2021-11-12 18:03:18 +08:00
"react-tiny-fab": "4.0.4",
2022-11-07 16:56:06 +08:00
"react-window": "^1.8.8",
"recoil": "0.7.6",
2023-01-18 15:57:37 +08:00
"regenerator-runtime": "0.13.11",
2022-11-07 16:56:06 +08:00
"reselect": "4.1.7",
"tslib": "2.4.1",
2022-05-09 13:13:43 +08:00
"use-asset": "1.0.4",
2022-08-04 23:15:58 +08:00
"workbox-core": "6.5.4",
"workbox-expiration": "6.5.4",
"workbox-precaching": "6.5.4",
"workbox-routing": "6.5.4",
"workbox-strategies": "6.5.4"
2018-10-20 20:32:02 +08:00
},
"devDependencies": {
2022-11-07 16:56:06 +08:00
"@fontsource/inter": "4.5.14",
2021-09-04 16:34:15 +08:00
"@types/invariant": "2.2.35",
"@types/lodash-es": "4.17.6",
2023-01-18 15:57:37 +08:00
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
2021-11-12 18:03:18 +08:00
"@types/react-modal": "3.13.1",
2021-09-04 16:34:15 +08:00
"@types/react-window": "1.8.5",
2023-01-18 15:57:37 +08:00
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"@vitejs/plugin-react": "3.0.1",
2022-11-07 16:56:06 +08:00
"autoprefixer": "10.4.13",
2023-01-18 15:57:37 +08:00
"eslint": "8.32.0",
2021-11-12 18:03:18 +08:00
"eslint-config-airbnb-base": "15.0.0",
2023-01-18 15:57:37 +08:00
"eslint-config-prettier": "8.6.0",
2022-05-08 14:37:00 +08:00
"eslint-config-react-app": "7.0.1",
2021-11-12 18:03:18 +08:00
"eslint-plugin-flowtype": "8.0.3",
2023-01-18 15:57:37 +08:00
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.1",
2022-06-15 16:15:50 +08:00
"eslint-plugin-react-hooks": "4.6.0",
2023-01-18 15:57:37 +08:00
"eslint-plugin-simple-import-sort": "^9.0.0",
"postcss": "8.4.21",
"postcss-import": "15.1.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "2.8.3",
2019-12-20 17:45:05 +08:00
"resize-observer-polyfill": "^1.5.1",
2023-01-18 15:57:37 +08:00
"sass": "1.57.1",
"typescript": "4.9.4",
"vite": "4.0.4",
"vite-plugin-pwa": "0.14.1"
2018-10-20 20:32:02 +08:00
}
}