forked from medipass/react-credit-card-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.95 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
{
"name": "react-credit-card-input",
"version": "0.2.0",
"description": "A credit/debit card input field for React",
"license": "MIT",
"repository": "jxom/react-credit-card-input",
"author": {
"name": "jxom",
"email": "[email protected]",
"url": "https://medipass.com.au"
},
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && webpack",
"prepublish": "npm run build",
"lint": "eslint src/",
"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 prettier:list-diff"
},
"dependencies": {
"babel-loader": "^7.1.2",
"credit-card-type": "^6.1.0",
"moment": "^2.19.2",
"payment": "^2.3.0",
"prop-types": "^15.6.0",
"styled-components": "^2.2.3",
"webpack": "^3.8.1"
},
"devDependencies": {
"@storybook/react": "^3.2.15",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.11.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"prettier": "^1.8.2",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"rimraf": "^2.6.2"
},
"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"
},
"eslintConfig": {
"extends": [
"react-app"
],
"plugins": [
"prettier",
"react"
],
"parser": "babel-eslint",
"rules": {
"prettier/prettier": "error",
"jsx-a11y/href-no-hash": 0
}
}
}