-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
82 lines (82 loc) · 2.61 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
{
"name": "nativebase-docs",
"private": true,
"scripts": {
"create-version": "node ./lib/scripts/build-version.js",
"dev": "node ./build-init.js && next dev",
"build": "node ./build-init.js && NODE_OPTIONS=--openssl-legacy-provider next build ",
"start": "next start",
"lint": "next lint",
"analyze": "cross-env ANALYZE=true next build",
"postinstall": "patch-package"
},
"dependencies": {
"@babel/generator": "^7.16.0",
"@babel/parser": "^7.16.4",
"@babel/plugin-transform-typescript": "^7.16.1",
"@babel/traverse": "^7.16.3",
"@docsearch/react": "^3.0.0-alpha.42",
"@expo/vector-icons": "^12.0.5",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^12.0.4",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/drawer": "^6.1.8",
"@react-navigation/native": "5.0.8",
"@react-navigation/stack": "5.1.0",
"@types/react-native": "^0.66.8",
"codesandbox": "^2.2.3",
"expo-font": "^10.0.3",
"expo-linear-gradient": "^11.3.0",
"expo-modules-core": "^0.9.1",
"formik": "2.2.9",
"gray-matter": "^4.0.3",
"native-base": "^3.4.19",
"next": "12.0.4",
"next-fonts": "^1.5.1",
"next-mdx-remote": "^3.0.8",
"prettier": "^2.5.1",
"prism-react-renderer": "^1.2.1",
"react": "17.0.2",
"react-docgen-typescript": "^2.2.1",
"react-dom": "17.0.2",
"react-live": "^2.3.0",
"react-native": "^0.66.3",
"react-native-gesture-handler": "1.10.2",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-linear-gradient": "^2.5.6",
"react-native-pager-view": "5.0.12",
"react-native-reanimated": "2.1.0",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "3.0.0",
"react-native-svg": "^12.1.1",
"react-native-swipe-list-view": "^3.2.9",
"react-native-tab-view": "^3.1.1",
"react-native-vector-icons": "^9.0.0",
"react-native-web": "^0.17.5",
"react-navigation": "^4.4.4"
},
"devDependencies": {
"@expo/next-adapter": "3.1.12",
"@next/bundle-analyzer": "^12.0.4",
"@types/mdx-js__react": "^1.5.5",
"@types/node": "16.11.7",
"@types/react": "17.0.35",
"babel-preset-expo": "^8.5.1",
"directory-tree": "^3.0.1",
"eslint": "7",
"eslint-config-next": "12.0.4",
"next-compose-plugins": "^2.2.1",
"next-transpile-modules": "^9.0.0",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"shelljs": "^0.8.4",
"typescript": "4.5.2"
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
}