-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.01 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
{
"name": "react-native-yandex-payment",
"version": "2.0.0",
"author": "lamantin.group",
"description": "Library for implement Yandex Checkout",
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/lamantin-group/react-native-yandex-payment.git"
},
"keywords": [
"react-native-yandex-payment",
"yandex-checkout",
"yandex checkout",
"yandex-payment",
"yandex payment",
"yandex",
"payment",
"checkout",
"money",
"react-native",
"lamantin.group"
],
"main": "index.ts",
"types": "build/index.d.ts",
"scripts": {
"prepublish": "tsc",
"start": "react-native start",
"doctor": "rm -rf node_modules && rm -f package-lock.json && rm -rf example/node_modules && rm -f example/package-lock.json && npm run install:deps",
"install:deps": "npm install && cd example && npm install && cd ios && pod install && cd .. && cd .. && cd ios && pod install",
"git:reset": "rm -rf .git && git init && git add -A && git commit -m 'Initial commit'",
"android": "cd example && npm run android",
"ios": "cd example && npm run ios"
},
"devDependencies": {
"@types/react-native": "^0.60.13",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.1",
"prettier-eslint": "^9.0.0",
"react": "16.8.6",
"react-native": "0.60.5",
"typescript": "^3.4.3"
},
"dependencies": {}
}