forked from react-native-community/directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.88 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
84
{
"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.3.0",
"@expo/match-media": "^0.4.0",
"@jlengstorf/get-share-image": "^0.8.0",
"@radix-ui/react-hover-card": "^1.0.2",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-picker/picker": "^2.4.8",
"@sentry/react": "^7.30.0",
"@sentry/tracing": "^7.30.0",
"cross-fetch": "^3.1.5",
"expo": "^47.0.13",
"expo-font": "^11.0.1",
"isomorphic-fetch": "^3.0.0",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"next": "12.3.4",
"node-emoji": "^1.11.0",
"react": "18.2.0",
"react-content-loader": "^6.2.0",
"react-dom": "18.2.0",
"react-easy-linkify": "^1.0.8",
"react-native": "0.70.5",
"react-native-safe-area-context": "^4.4.1",
"react-native-svg": "^12.4.4",
"react-native-web": "^0.18.9",
"react-native-web-hooks": "^3.0.2",
"use-debounce": "^8.0.4"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@expo/next-adapter": "^4.0.13",
"@types/react": "^18.0.26",
"@types/react-native": "^0.70.8",
"ajv-cli": "^4.2.0",
"babel-preset-expo": "^9.2.2",
"browserslist": "^4.21.4",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-universe": "^11.1.1",
"lint-staged": "^11.2.6",
"next-compose-plugins": "^2.2.1",
"next-fonts": "^1.5.1",
"next-images": "^1.8.4",
"next-transpile-modules": "^9.0.0",
"prettier": "^2.8.1",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"yarn-deduplicate": "^6.0.0"
},
"private": true,
"simple-git-hooks": {
"pre-commit": "yarn precommit"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
],
"react-native-libraries.json": [
"yarn libraries:cleanup"
]
}
}