forked from react-native-community/directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.87 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
{
"scripts": {
"start": "next dev",
"build": "yarn data:update && next build",
"preview": "next build && next start",
"script": "babel-node --presets @babel/preset-env",
"lint": "eslint .",
"data:update": "babel-node scripts/build-and-score-data.js --presets @babel/preset-env",
"data:test": "babel-node scripts/validate-libraries.js --presets @babel/preset-env",
"data:validate": "ajv validate -s react-native-libraries.schema.json -d react-native-libraries.json --verbose",
"libraries:cleanup": "babel-node scripts/cleanup-libraries-json.js --presets @babel/preset-env && yarn libraries:format",
"libraries:recalculate": "babel-node scripts/recalculate-popularity.js --presets @babel/preset-env",
"libraries:format": "prettier --write react-native-libraries.json",
"libraries:images": "babel-node scripts/check-images.js --presets @babel/preset-env",
"lock:cleanup": "yarn-deduplicate",
"postinstall": "yarn lock:cleanup",
"precommit": "simple-git-hooks && lint-staged"
},
"dependencies": {
"@expo/html-elements": "^0.9.1",
"@expo/match-media": "^0.4.0",
"@jlengstorf/get-share-image": "^0.8.0",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-native-async-storage/async-storage": "^1.21.0",
"@react-native-picker/picker": "^2.6.1",
"@sentry/react": "^7.91.0",
"@vercel/analytics": "^1.1.1",
"expo": "^50.0.0-preview.7",
"expo-font": "^11.10.0",
"lodash": "^4.17.21",
"next": "^14.0.3",
"node-emoji": "^2.1.3",
"react": "18.2.0",
"react-content-loader": "^6.2.1",
"react-dom": "18.2.0",
"react-easy-linkify": "^1.0.8",
"react-native": "0.73.1",
"react-native-safe-area-context": "^4.8.2",
"react-native-svg": "^14.1.0",
"react-native-web": "^0.19.10",
"react-native-web-hooks": "^3.0.2",
"use-debounce": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.7",
"@expo/next-adapter": "^5.0.2",
"@types/react": "^18.2.46",
"ajv-cli": "^5.0.0",
"browserslist": "^4.22.2",
"cheerio": "^1.0.0-rc.12",
"cross-fetch": "^4.0.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.3",
"eslint-config-universe": "^12.0.0",
"isomorphic-fetch": "^3.0.0",
"jsonfile": "^6.1.0",
"lint-staged": "^15.1.0",
"next-compose-plugins": "^2.2.1",
"next-fonts": "^1.5.1",
"next-images": "^1.8.5",
"prettier": "^3.1.1",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3",
"user-agent-data-types": "^0.4.2",
"yarn-deduplicate": "^6.0.2"
},
"private": true,
"simple-git-hooks": {
"pre-commit": "yarn precommit"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
],
"react-native-libraries.json": [
"yarn libraries:cleanup"
]
}
}