-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "@monadstech/react-native-lib-template",
"version": "0.0.1",
"description": "Template for creating new library for react native",
"repository": "[email protected]:MonadsTech/react-native-lib-template.git",
"author": "Pankaj Vaghela <[email protected]>",
"license": "MIT",
"private": false,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"w": "tsc --watch",
"build": "tsc",
"prepare": "yarn build"
},
"dependencies": {
"react-native": "0.62.2"
},
"peerDependencies": {
"react-native": "^0.62.2"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"@types/jest": "^26.0.10",
"@types/react": "^16.9.48",
"@types/react-native": "^0.63.11",
"@types/react-test-renderer": "^16.9.3",
"@types/es6-promise": "^3.3.0",
"@types/string-format": "^2.0.0",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.58.0",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.11.0",
"typescript": "^4.0.2"
},
"jest": {
"preset": "react-native"
}
}