forked from react-native-community/directory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.55 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.55 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
{
"type": "module",
"scripts": {
"start": "next dev",
"build": "bun data:update && next build",
"preview": "next build && next start",
"lint": "eslint .",
"data:update": "bun scripts/build-and-score-data",
"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 && bun libraries:format",
"libraries:recalculate": "bun scripts/recalculate-scores",
"libraries:format": "prettier --write react-native-libraries.json",
"libraries:check": "bun scripts/check-resources",
"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": "^0.12.5",
"@expo/match-media": "^0.4.0",
"@radix-ui/react-hover-card": "^1.1.14",
"@radix-ui/react-tooltip": "^1.2.7",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-picker/picker": "^2.11.1",
"@sentry/react": "^9.40.0",
"@vercel/blob": "^0.27.3",
"expo": "54.0.0-canary-20250713-8f814f8",
"expo-font": "13.4.0-canary-20250713-8f814f8",
"lodash": "^4.17.21",
"next": "^15.4.2",
"node-emoji": "^2.2.0",
"react": "19.1.0",
"react-content-loader": "^7.1.1",
"react-dom": "19.1.0",
"react-easy-linkify": "^1.0.8",
"react-native": "0.80.1",
"react-native-safe-area-context": "5.5.2",
"react-native-svg": "^15.12.0",
"react-native-web": "^0.20.0",
"use-debounce": "^10.0.5"
},
"devDependencies": {
"@expo/next-adapter": "^6.0.0",
"@next/bundle-analyzer": "^15.4.2",
"@types/bun": "^1.2.19",
"@types/lodash": "^4.17.20",
"@types/react": "~19.1.8",
"ajv-cli": "^5.0.0",
"browserslist": "^4.25.1",
"cheerio": "^1.1.0",
"cross-fetch": "^4.1.0",
"dotenv": "^17.2.0",
"eslint": "^9.31.0",
"eslint-config-next": "^15.4.2",
"eslint-config-universe": "^15.0.3",
"lint-staged": "^15.5.1",
"next-compose-plugins": "^2.2.1",
"next-fonts": "^1.5.1",
"next-images": "^1.8.5",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.0",
"typescript": "^5.8.3",
"user-agent-data-types": "^0.4.2"
},
"private": true,
"simple-git-hooks": {
"pre-commit": "bunx precommit"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
],
"react-native-libraries.json": [
"bun libraries:cleanup"
]
}
}