forked from RSSNext/Folo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 4.13 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 4.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@follow/monorepo",
"type": "module",
"private": true,
"packageManager": "pnpm@10.12.1+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac",
"description": "Follow everything in one place",
"author": "Folo Team",
"license": "GPL-3.0-only",
"homepage": "https://github.com/RSSNext",
"repository": {
"url": "https://github.com/RSSNext/follow",
"type": "git"
},
"scripts": {
"build:packages": "turbo run build --filter=\"./packages/**/*\"",
"build:web": "turbo run Folo#build:web",
"dedupe:locales": "eslint --fix locales/**",
"depcheck": "npx depcheck --quiet",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generator:i18n-template": "tsx scripts/generate-i18n-locale.ts",
"icons:sync": "tsx scripts/svg-to-rn.ts && prettier --write apps/mobile/src/icons/**/*.tsx && eslint --fix apps/mobile/src/icons/**/*.tsx",
"icons:update": "tsx scripts/update-icon.ts",
"lint": "pnpm run lint:tsl && eslint",
"lint:fix": "eslint --fix",
"lint:tsl": "tsslint --project apps/*/tsconfig.json",
"mitproxy": "bash scripts/run-proxy.sh",
"polyfill-optimize": "pnpx nolyfill install",
"postinstall": "pnpm run build:packages",
"prepare": "simple-git-hooks && corepack prepare",
"reinstall": "rm -rf node_modules && rm -rf apps/**/node_modules && rm -rf packages/**/node_modules && pnpm install",
"test": "cross-env CI=1 pnpm --recursive run test",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@eslint/compat": "1.3.0",
"@tsslint/cli": "1.5.17",
"@tsslint/config": "1.5.17",
"@tsslint/eslint": "1.5.17",
"@types/node": "24.0.3",
"@types/react": "19.1.6",
"@types/react-dom": "19.1.5",
"@vercel/node": "5.3.0",
"cross-env": "7.0.3",
"eslint": "9.29.0",
"eslint-config-hyoban": "4.0.8",
"eslint-plugin-react-native": "5.0.0",
"fast-glob": "3.3.3",
"lint-staged": "16.1.2",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.13",
"raw-body": "3.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"rimraf": "6.0.1",
"simple-git-hooks": "2.13.0",
"svg-parser": "2.0.4",
"tar": "7.4.3",
"tsx": "4.20.3",
"turbo": "2.5.4",
"typescript": "catalog:",
"vite": "6.3.5",
"vitest": "3.2.4"
},
"pnpm": {
"patchedDependencies": {
"immer@10.1.1": "patches/immer@10.1.1.patch",
"re-resizable@6.11.2": "patches/re-resizable@6.11.2.patch",
"hono": "patches/hono.patch",
"electron-context-menu@4.0.5": "patches/electron-context-menu@4.0.5.patch",
"@mozilla/readability@0.6.0": "patches/@mozilla__readability@0.6.0.patch",
"daisyui@4.12.24": "patches/daisyui@4.12.24.patch",
"jsonpointer": "patches/jsonpointer.patch",
"workbox-precaching": "patches/workbox-precaching.patch",
"@pengx17/electron-forge-maker-appimage": "patches/@pengx17__electron-forge-maker-appimage.patch",
"@microflash/remark-callout-directives": "patches/@microflash__remark-callout-directives.patch",
"react-native-track-player": "patches/react-native-track-player.patch",
"react-native-sheet-transitions": "patches/react-native-sheet-transitions.patch",
"react-native-screens": "patches/react-native-screens.patch",
"expo-image": "patches/expo-image.patch",
"react-native-ios-utilities": "patches/react-native-ios-utilities.patch",
"@sentry/electron": "patches/@sentry__electron.patch"
},
"overrides": {
"@electron/node-gyp": "10.2.0-electron.2",
"is-core-module": "npm:@nolyfill/is-core-module@1.0.39",
"isarray": "npm:@nolyfill/isarray@1.0.44",
"lan-network@<0.1.7": "0.1.7",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native-ios-context-menu": "3.1.1",
"react-native-ios-utilities": "5.1.5"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --ignore-unknown --write"
],
"locales/**/*.json": [
"npm run dedupe:locales",
"git add locales"
]
}
}