-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.28 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
{
"name": "@dashx/react-native",
"title": "DashX React Native",
"version": "1.0.8",
"description": "DashX SDK for React Native",
"main": "index.js",
"files": [
"!**/__fixtures__",
"!**/__mocks__",
"!**/__tests__",
"!**/.*",
"!android/build",
"!android/gradle",
"!android/gradlew.bat",
"!android/gradlew",
"!android/local.properties",
"!ios/build",
"!lib/typescript/example",
"*.podspec",
"android",
"ContentOptionsBuilder.js",
"cpp",
"DashXReactNative.podspec",
"index.js",
"ios",
"README.md",
"utils.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/dashxhq/dashx-react-native"
},
"keywords": [
"react-native",
"ios",
"android"
],
"author": {
"name": "DashXDev",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"homepage": "https://github.com/dashxhq/dashx-react-native#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@react-native/eslint-config": "^0.72.2",
"del-cli": "^5.0.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "18.2.0",
"react-native": "0.72.3",
"react-native-builder-bob": "^0.21.3",
"turbo": "^1.10.7"
},
"engines": {
"node": ">= 16.0.0"
},
"packageManager": "^[email protected]",
"dependencies": {
"react-native-get-real-path": "github:Wraptime/react-native-get-real-path"
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"trailingComma": "es5"
}
}