-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.71 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@monadstech/react-native-design-system-view",
"version": "0.0.3",
"description": "View related component for react native design system",
"repository": "git@github.com:MonadsTech/react-native-lib-template.git",
"author": "Pankaj Vaghela <vpankaj1998official@gmail.com>",
"license": "MIT",
"private": false,
"main": "./lib/module/index.js",
"types": "./lib/typescript/index.d.ts",
"module": "./lib/module/index.js",
"react-native": "./src/index.ts",
"scripts": {
"w": "tsc --watch",
"build": "tsc",
"prepare": "bob build"
},
"dependencies": {
"react-native": "^0.63.2"
},
"peerDependencies": {
"react-native": "^0.63.2"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/bob": "^0.16.2",
"@react-native-community/eslint-config": "^0.0.5",
"@types/es6-promise": "^3.3.0",
"@types/jest": "^26.0.10",
"@types/react": "^16.9.48",
"@types/react-native": "^0.63.11",
"@types/react-test-renderer": "^16.9.3",
"@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",
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
]
},
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"module",
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}