forked from z-dev/react-native-checkout
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.86 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
{
"name": "react-native-checkout",
"version": "0.0.6",
"private": false,
"description": "Cross Platform React Native component. Supports selecting payment method, adding cards manually and using the camera.",
"keywords": [
"checkout",
"form",
"native",
"payment",
"react",
"react-native",
"stripe"
],
"license": "MIT",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/z-dev/react-native-checkout"
},
"scripts": {
"ci": "yarn lint",
"precommit": "lint-staged && npm run lint",
"format:js": "npm run prettier -- \"src/**/*.js\"",
"lint": "eslint ./src --ext=js",
"lint:watch": "nodemon --exec \"yarn lint\"",
"prettier": "prettier --single-quote --trailing-comma all --no-semi --print-width 180 --write"
},
"dependencies": {
"lodash": "^4.14.2",
"payment": "^2.2.1",
"prop-types": "^15.6.0",
"react-native-awesome-card-io": "0.7.0",
"react-native-keyboard-spacer": "^0.4.1",
"string": "^3.3.3"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-preset-react-native": "^1.5.3",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-native": "^2.3.1",
"estraverse-fb": "^1.3.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"nodemon": "^1.9.1",
"prettier": "^1.7.4",
"react-native-cli": "^2.0.1",
"sort-package-json": "^1.7.1"
},
"peerDependencies": {
"react": "16.0.0-alpha.12",
"react-native": "0.48.4"
},
"lint-staged": {
"src/**/*.js": [
"npm run prettier --",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
}
}