-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
98 lines (98 loc) · 3.69 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"private": true,
"name": "site",
"version": "1.0.0",
"license": "MIT",
"resolutions": {
"@expo/webpack-config": "0.11.19"
},
"scripts": {
"start": "yarn gatsby develop",
"expo:start": "yarn expo:mdx && expo start",
"expo:start:watch": "concurrently --kill-others \"yarn expo:start\" \"yarn expo:mdx:watch\"",
"expo:publish": "yarn expo:mdx && expo publish",
"expo:start:web": "yarn expo:mdx && expo start:web",
"expo:build:web": "yarn expo:mdx && expo build:web",
"expo:mdx": "node expo-generate-mdx-as-jsx.js && prettier --write '{src,content}/**/*.mdx.jsx'",
"expo:mdx:watch": "chokidar \"content/**/*.mdx\" -c \"yarn expo:mdx\"",
"expo:netlify": "yarn expo:build:web",
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"serve": "gatsby serve",
"clean": "gatsby clean",
"netlify": "yarn netlify:build && yarn netlify:publishContent",
"netlify:build": "yarn build",
"netlify:publishContent": "echo 'publish ./content folder static assets, so that I can cross-post easily to other markdown-enabled sites' && cpx 'content/**/*.{png,jpg}' public/content",
"prettier": "prettier --write '{src,content}/**/*.{js,jsx,ts,tsx,mdx}'",
"postinstall": "patch-package && yarn expo:mdx"
},
"dependencies": {
"@emotion/styled": "^10.0.27",
"@mdx-js/mdx": "^1.6.5",
"@mdx-js/react": "^1.6.5",
"@mdx-js/tag": "^0.20.3",
"@narative/gatsby-theme-novela": "^0.16.1",
"@react-native-community/hooks": "^2.6.0",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/native": "^5.5.1",
"@react-navigation/stack": "^5.5.1",
"emotion-theming": "^10.0.27",
"expo": "^37.0.12",
"expo-av": "^8.1.0",
"expo-battery": "^2.1.1",
"expo-camera": "~8.2.0",
"expo-constants": "^9.0.0",
"expo-dark-mode-switch": "^0.0.1",
"expo-image-manipulator": "^8.1.0",
"expo-image-picker": "^8.1.0",
"expo-permissions": "~8.1.0",
"gatsby": "^2.23.3",
"gatsby-plugin-canonical-urls": "^2.3.4",
"gatsby-plugin-emotion": "^4.3.4",
"gatsby-plugin-google-analytics": "^2.3.4",
"gatsby-plugin-mailchimp": "^5.2.2",
"gatsby-plugin-manifest": "^2.4.11",
"gatsby-plugin-netlify": "^2.3.5",
"gatsby-plugin-react-native-web": "^3.1.0",
"gatsby-plugin-resolve-src": "^2.1.0",
"gatsby-plugin-sitemap": "^2.4.5",
"gatsby-plugin-webmention": "^0.2.0",
"lodash": "^4.17.15",
"mdx.macro": "^0.2.9",
"prettier": "^2.0.5",
"react": "16.13.1",
"react-async-hook": "^3.6.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-37.0.0.tar.gz",
"react-native-animation-hooks": "^1.0.1",
"react-native-appearance": "~0.3.3",
"react-native-auto-height-image": "^3.0.0",
"react-native-gesture-handler": "~1.6.1",
"react-native-paper": "^3.5.1",
"react-native-reanimated": "~1.7.0",
"react-native-safe-area-context": "0.7.3",
"react-native-screens": "~2.2.0",
"react-native-svg": "11.0.1",
"react-native-web": "^0.11.7",
"react-native-web-hooks": "^3.0.1",
"react-navigation-heavy-screen": "^1.0.2",
"theme-ui": "^0.2.40",
"use-constant": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@types/react": "^16.9.36",
"@types/react-native": "^0.62.13",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-expo": "^8.2.1",
"chokidar-cli": "^2.1.0",
"concurrently": "^5.2.0",
"cpx": "^1.5.0",
"expo-cli": "^3.21.5",
"glob": "^7.1.6",
"gray-matter": "^4.0.2",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"typescript": "^3.9.5"
}
}