-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.73 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "react-navigation-drawer",
"version": "2.7.0",
"description": "Drawer navigator component for React Navigation",
"main": "lib/commonjs/index.js",
"react-native": "lib/module/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"lib:lint": "eslint --ext '.js,.ts,.tsx' .",
"lib:typescript": "tsc --noEmit --composite false",
"lib:test": "jest",
"lib:build": "bob build",
"lib:clean": "del lib"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"keywords": [
"react-native-component",
"react-component",
"react-native",
"ios",
"android",
"drawer",
"material"
],
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/runtime": "^7.12.1",
"@commitlint/config-conventional": "^11.0.0",
"@react-native-community/bob": "^0.16.2",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.53",
"@types/react-native": "^0.63.30",
"babel-jest": "^26.6.1",
"commitlint": "^11.0.0",
"core-js": "^3.6.5",
"del-cli": "^3.0.1",
"eslint": "^7.12.0",
"eslint-config-satya164": "^3.1.8",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"react": "~16.13.1",
"react-lifecycles-compat": "^3.0.4",
"react-native": "~0.63.2",
"react-native-gesture-handler": "~1.7.0",
"react-native-reanimated": "~1.13.0",
"react-native-screens": "~2.10.1",
"react-native-testing-library": "^6.0.0",
"react-navigation": "^4.4.4",
"typescript": "^4.0.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "^1.0.12",
"react-native-reanimated": "^1.0.0",
"react-native-screens": ">=1.0.0 || >= 2.0.0-alpha.0 || >= 2.0.0-beta.0 || >= 2.0.0",
"react-navigation": "^4.1.1"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"resolutions": {
"react": "~16.13.1",
"react-native": "~0.63.2"
},
"jest": {
"testEnvironment": "node",
"testRegex": "/__tests__/.*\\.(test|spec)\\.(js|tsx?)$",
"transform": {
"^.+\\.(js|ts|tsx)$": "babel-jest"
},
"setupFiles": [
"<rootDir>/jest/setup.js"
],
"preset": "react-native"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"trailingComma": "es5"
}
}