-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
52 lines (52 loc) · 1.6 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
{
"name": "gatsby-plugin-react-native-web",
"version": "3.1.0",
"main": "index.js",
"description": "Adds Unimodule & React Native support to Gatsby",
"keywords": [
"gatsby",
"gatsby-plugin",
"expo",
"expo-web",
"react",
"react-native",
"react-native-web",
"universal",
"unimodule"
],
"repository": {
"type": "git",
"url": "git+https://github.com/slorber/gatsby-plugin-react-native-web.git"
},
"author": "Sébastien Lorber <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"test": "jest",
"sync": "cp gatsby-node.js examples/uikits/node_modules/gatsby-plugin-react-native-web/gatsby-node.js && cp gatsby-browser.js examples/uikits/node_modules/gatsby-plugin-react-native-web/gatsby-browser.js && cp gatsby-ssr.js examples/uikits/node_modules/gatsby-plugin-react-native-web/gatsby-ssr.js"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@expo/webpack-config": ">=0.11",
"babel-plugin-remove-graphql-queries": ">=2.8.1",
"babel-preset-expo": "^8.1.0"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"babel-plugin-react-native-web": "^0.6.1",
"babel-preset-gatsby-package": "^0.2.7",
"cross-env": "^5.2.1",
"react-native-web": "^0.11.7"
},
"peerDependencies": {
"gatsby": "^2.0.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-native-web": "^0.11.7"
}
}