-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
83 lines (83 loc) · 2.38 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
{
"name": "react-credit-card-input",
"version": "1.1.5",
"description": "A credit/debit card input field for React",
"license": "MIT",
"repository": "github:medipass/react-credit-card-input",
"author": {
"name": "jxom",
"email": "jake@medipass.io",
"url": "https://medipass.com.au"
},
"main": "lib/index.js",
"keywords": [
"credit",
"debit",
"card",
"input",
"cvc"
],
"scripts": {
"build": "rimraf lib && rollup -c rollup.config.js",
"prepublish": "npm run build",
"lint": "eslint src/",
"fix": "npm run lint -- --fix && npm run prettier",
"flow": "flow",
"prettier": "prettier --config .prettierrc --write \"src/**/*.js\"",
"prettier:list-diff": "prettier --config .prettierrc --list-different 'src/**/*.js'",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o docs/",
"test": "npm run lint && npm run flow && npm run prettier:list-diff"
},
"dependencies": {
"credit-card-type": "6.3.0",
"payment": "2.3.0"
},
"devDependencies": {
"@storybook/react": "^3.2.15",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.11.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.64.0",
"prettier": "^1.8.2",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"rimraf": "^2.6.2",
"rollup": "^0.54.1",
"rollup-plugin-babel": "^3.0.3",
"styled-components": "4.2.0"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0",
"react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0",
"styled-components": ">=3.0.0"
},
"eslintConfig": {
"extends": [
"react-app"
],
"plugins": [
"prettier",
"react"
],
"parser": "babel-eslint",
"rules": {
"prettier/prettier": "error",
"jsx-a11y/href-no-hash": 0
}
}
}