-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1008 Bytes
/
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
{
"name": "react-native-web-name",
"version": "0.0.0",
"description": "React Native for Web implementation of {target module}",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "[email protected]:react-native-web-community/react-native-web-name.git"
},
"author": {
"name": "{name}",
"email": "{email}",
"url": "{url}"
},
"license": "{license, don't forget to add a LICENSE file at the root of the project}",
"keywords": [
"react-native",
"react-native-web",
"{other keywords}"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"babel": {
"presets": [
"react-native"
]
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-react-native": "^4.0.0",
"prettier": "^1.7.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-native-web": "^0.1.1",
"webpack": "^3.6.0"
},
"peerDependencies": {
"react-native-web": "*"
}
}