-
Notifications
You must be signed in to change notification settings - Fork 598
/
Copy pathpackage.json
83 lines (83 loc) · 2.65 KB
/
package.json
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
{
"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"
},
"resolutions": {
"eslint-plugin-react-hooks": "~4"
},
"dependencies": {
"@expo/html-elements": "^0.11.2",
"@expo/match-media": "^0.4.0",
"@jlengstorf/get-share-image": "^1.0.2",
"@radix-ui/react-hover-card": "^1.1.6",
"@radix-ui/react-tooltip": "^1.1.8",
"@react-native-async-storage/async-storage": "^2.1.2",
"@react-native-picker/picker": "^2.11.0",
"@sentry/react": "^8.46.0",
"@vercel/blob": "^0.27.3",
"expo": "^52.0.39",
"expo-font": "~13.0.4",
"lodash": "^4.17.21",
"next": "^15.2.2",
"node-emoji": "^2.2.0",
"react": "^18.3.1",
"react-content-loader": "^7.0.2",
"react-dom": "^18.3.1",
"react-easy-linkify": "^1.0.8",
"react-native": "^0.78.0",
"react-native-safe-area-context": "^5.3.0",
"react-native-svg": "15.4.0",
"react-native-web": "^0.19.13",
"react-native-web-hooks": "^3.0.2",
"use-debounce": "^10.0.4"
},
"devDependencies": {
"@expo/next-adapter": "^6.0.0",
"@next/bundle-analyzer": "^15.2.2",
"@types/bun": "^1.2.5",
"@types/lodash": "^4.17.16",
"@types/react": "^18.3.12",
"ajv-cli": "^5.0.0",
"browserslist": "^4.24.4",
"cheerio": "^1.0.0",
"cross-fetch": "^4.1.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.0",
"eslint-config-next": "^15.2.2",
"eslint-config-universe": "14.0.0",
"lint-staged": "^15.5.0",
"next-compose-plugins": "^2.2.1",
"next-fonts": "^1.5.1",
"next-images": "^1.8.5",
"prettier": "^3.5.3",
"simple-git-hooks": "^2.11.1",
"typescript": "5.6.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"
]
}
}