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
|
{
"name": "mobile",
"version": "0.1.0",
"private": true,
"productName": "Mullvad VPN",
"description": "Mullvad VPN client",
"author": {
"name": "Mullvad VPN",
"email": "support@mullvad.net"
},
"repository": "https://github.com/mullvad/mullvadvpn-app",
"license": "GPL-3.0",
"dependencies": {
"@mullvad/components": "0.1.0",
"react": "^16.4.0",
"react-native": "^0.56",
"reactxp": "^1.3.3"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.47",
"@babel/core": "7.0.0-beta.47",
"babel-preset-react-native": "^5"
},
"scripts": {
"postinstall": "node ./postinstall.js",
"eject": "react-native eject",
"develop:android": "react-native run-android --simulator",
"develop:ios": "react-native run-ios --simulator",
"test": "echo '1' ; exit 1"
}
}
|