-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 925 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 925 Bytes
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": "react-native-typescript-library",
"private": true,
"version": "0.0.0",
"license": "MIT",
"author": {
"url": "https://vitorluizc.github.io/",
"name": "Vitor Luiz Cavalcanti",
"email": "vitorluizc@outlook.com"
},
"dependencies": {
"expo": "^28.0.0",
"react": "16.3.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-28.0.0.tar.gz"
},
"devDependencies": {
"@types/react": "^16.4.6",
"@types/react-native": "^0.56.0",
"react-native-scripts-ts": "^1.15.0",
"react-native-typescript-transformer": "^1.2.10",
"tslib": "^1.9.3",
"typescript": "^2.9.2"
},
"main": "./node_modules/react-native-scripts-ts/build/bin/crna-entry.js",
"scripts": {
"build": "cd library && tsc",
"start": "react-native-scripts-ts start",
"start:ios": "react-native-scripts-ts ios",
"start:android": "react-native-scripts-ts android"
}
}