-
Notifications
You must be signed in to change notification settings - Fork 806
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.26 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.26 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
{
"private": true,
"type": "module",
"scripts": {
"start": "next dev --webpack",
"build": "bun data:update && bun llms:generate && next build --webpack",
"build:quick": "bun data:update-missing --missing-only && bun llms:generate && next build --webpack",
"preview": "next build --webpack && next start",
"lint": "oxlint --type-aware && oxfmt --check",
"lint:fix": "oxlint --type-aware --fix && oxfmt",
"data:update": "bun scripts/build-and-score-data",
"data:update-missing": "bun scripts/build-and-score-data --missing-only",
"data:test": "bun scripts/validate-libraries",
"data:validate": "ajv validate -s react-native-libraries.schema.json -d react-native-libraries.json --verbose --allowUnionTypes",
"libraries:cleanup": "bun scripts/cleanup-libraries-json && oxfmt react-native-libraries.json",
"libraries:recalculate": "bun scripts/recalculate-scores",
"libraries:check": "bun scripts/check-resources",
"llms:generate": "bun scripts/generate-llms",
"ci:cleanup-blobs": "bun scripts/cleanup-data-blobs",
"ci:validate": "bun scripts/validate-new-entries",
"precommit": "simple-git-hooks && lint-staged"
},
"dependencies": {
"@expo/html-elements": "^56.0.0-canary-20260402-87c5ce2",
"@expo/match-media": "^0.4.0",
"@m2d/react-markdown": "^1.0.0",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-native-picker/picker": "^2.11.4",
"@sentry/react": "^10.47.0",
"@visx/gradient": "^3.12.0",
"@visx/responsive": "^3.12.0",
"@visx/xychart": "^3.12.0",
"crypto-js": "^4.2.0",
"es-toolkit": "^1.45.1",
"expo": "56.0.0-canary-20260402-87c5ce2",
"expo-font": "^56.0.0-canary-20260402-87c5ce2",
"next": "^16.2.3",
"node-emoji": "^2.2.0",
"postcss": "^8.5.9",
"react": "19.2.5",
"react-content-loader": "^7.1.2",
"react-dom": "19.2.5",
"react-easy-linkify": "^1.0.8",
"react-native": "0.85.0",
"react-native-safe-area-context": "^5.7.0",
"react-native-svg": "^15.15.4",
"react-native-web": "^0.21.2",
"react-shiki": "^0.9.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-emoji": "^5.0.2",
"remark-gfm": "^4.0.1",
"semver": "^7.7.4",
"swr": "^2.4.1",
"tailwindcss": "^3.4.19",
"twrnc": "^4.16.0",
"use-debounce": "^10.1.1"
},
"devDependencies": {
"@expo/next-adapter": "^6.0.0",
"@next/bundle-analyzer": "^16.2.3",
"@prettier/plugin-oxc": "^0.1.3",
"@types/bun": "^1.3.11",
"@types/crypto-js": "^4.2.2",
"@types/react": "^19.2.14",
"@types/semver": "^7.7.1",
"@vercel/blob": "^2.3.3",
"ajv-cli": "^5.0.0",
"browserslist": "^4.28.2",
"cheerio": "^1.2.0",
"dotenv": "^17.4.1",
"lint-staged": "^16.4.0",
"next-compose-plugins": "^2.2.1",
"next-fonts": "^1.5.1",
"next-images": "^1.8.5",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"oxlint-tsgolint": "^0.20.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.2",
"user-agent-data-types": "^0.4.3"
},
"simple-git-hooks": {
"pre-commit": "bunx precommit"
},
"lint-staged": {
"*.{mjs,ts,tsx,json,yml}": [
"oxlint --type-aware --fix"
],
"react-native-libraries.json": [
"bun libraries:cleanup"
]
}
}