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
87 lines (87 loc) · 2.73 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.73 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
{
"name": "@follow/monorepo",
"type": "module",
"private": true,
"packageManager": "pnpm@10.17.0",
"description": "Follow everything in one place",
"author": "Folo Team",
"license": "AGPL-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",
"dev:web": "turbo run @follow/web#dev @follow/ssr#dev",
"format": "prettier --write .",
"format:check": "prettier --check .",
"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": {
"@babel/generator": "7.29.1",
"@babel/parser": "7.29.0",
"@babel/traverse": "7.29.0",
"@babel/types": "7.29.0",
"@eslint/compat": "1.4.1",
"@tsslint/cli": "2.0.7",
"@tsslint/config": "2.0.7",
"@tsslint/eslint": "2.0.7",
"@types/node": "25.2.3",
"@types/react": "19.1.17",
"@types/react-dom": "19.2.3",
"@vercel/node": "5.6.3",
"cross-env": "10.1.0",
"eslint": "9.39.1",
"eslint-config-hyoban": "4.0.10",
"eslint-plugin-react-native": "5.0.0",
"fast-glob": "3.3.3",
"glob": "11.0.3",
"lint-staged": "16.2.7",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"raw-body": "3.0.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"rimraf": "6.1.2",
"serialize-error": "2.1.0",
"simple-git-hooks": "2.13.1",
"svg-parser": "2.0.4",
"tar": "7.5.7",
"tsx": "4.21.0",
"turbo": "2.8.7",
"typescript": "catalog:",
"vite": "7.3.1",
"vitest": "3.2.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --ignore-unknown --write"
],
"apps/mobile/src/**/*": [
"bash scripts/increment-build-id.sh"
],
"locales/**/*.json": [
"npm run dedupe:locales",
"git add locales"
]
}
}