forked from react-native-community/directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.96 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
85
86
{
"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": "npx yarn-deduplicate",
"postinstall": "yarn lock:cleanup"
},
"dependencies": {
"@expo/html-elements": "^0.0.1",
"@expo/match-media": "^0.1.0",
"@popperjs/core": "^2.8.4",
"@react-native-async-storage/async-storage": "^1.14.1",
"@react-native-picker/picker": "^1.9.11",
"@sentry/browser": "^5.27.6",
"@sentry/node": "^5.27.6",
"cross-fetch": "^3.0.6",
"expo": "^40.0.1",
"expo-font": "^9.0.0",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"micro-cors": "^0.1.1",
"next": "^9.5.5",
"node-emoji": "^1.10.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
"react-native-appearance": "^0.3.4",
"react-native-safe-area-context": "^3.1.9",
"react-native-svg": "^12.1.0",
"react-native-web": "^0.14.8",
"react-native-web-hooks": "^3.0.1",
"react-popper": "^2.2.4",
"react-simple-linkify": "^1.0.3",
"use-debounce": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/node": "^7.13.0",
"@babel/preset-env": "^7.13.9",
"@expo/next-adapter": "^2.1.61",
"@types/micro-cors": "^0.1.1",
"@types/react": "^16.14.2",
"@types/react-native": "0.63.40",
"@zeit/next-source-maps": "^0.0.3",
"ajv-cli": "^4.1.0",
"babel-preset-expo": "^8.3.0",
"cheerio": "^1.0.0-rc.5",
"dotenv": "^8.2.0",
"eslint": "^7.21.0",
"eslint-config-universe": "^7.0.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"next-fonts": "^1.5.1",
"next-images": "^1.7.0",
"prettier": "^1.19.1",
"typescript": "^3.9.7",
"webpack": "^4.44.2"
},
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"react-native-libraries.json": [
"babel-node scripts/validate-libraries.js --presets @babel/preset-env",
"babel-node scripts/cleanup-libraries-json.js --presets @babel/preset-env",
"prettier --write"
]
}
}