-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.45 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.45 KB
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
{
"name": "edge-components",
"version": "0.0.31",
"repository": {
"type": "git",
"url": "git@github.com:Airbitz/edge-components.git"
},
"license": "MIT",
"author": "Edge, Inc.",
"contributors": [
"Kevin Sullivan <kevin@edge.app>",
"Kylan Hurt <kylan@edge.app>"
],
"main": "src/index.js",
"files": [
"/CHANGELOG.md",
"/src/*",
"/package.json",
"/README.md"
],
"scripts": {
"flow": "flow",
"format": "import-sort -l --write '*.js' 'src/**/*.js' 'storybook/**/*.js'; prettier-eslint --write '*.js' 'src/**/*.js' 'storybook/**/*.js'",
"jest": "jest",
"lint": "eslint '*.js' 'src/**/*.js' 'storybook/**/*.js'",
"precommit": "lint-staged && yarn flow",
"start": "storybook start -p 7007",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.js": [
"eslint",
"import-sort --list-different",
"prettier-eslint --list-different"
]
},
"prettier": {
"printWidth": 120
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"react-native-linear-gradient": "^2.4.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-knobs": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addons": "^3.4.8",
"@storybook/react-native": "^3.4.8",
"babel-core": "^6.26.2",
"babel-eslint": "^8.2.5",
"babel-jest": "22.4.3",
"babel-preset-react-native": "4.0.0",
"babel-runtime": "^6.26.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-native": "^3.2.1",
"eslint-plugin-standard": "^3.1.0",
"flow-bin": "^0.84.0",
"husky": "^1.3.1",
"import-sort-cli": "^5.0.0",
"import-sort-parser-babylon": "^5.0.0",
"import-sort-style-module": "^5.0.0",
"jest": "22.4.3",
"lint-staged": "^7.2.0",
"prettier-eslint-cli": "^4.7.1",
"prop-types": "^15.6.1",
"react": "16.6.3",
"react-dom": "16.3.1",
"react-native": "0.57.8",
"react-native-material-textfield": "git://github.com/EdgeApp/react-native-material-textfield.git",
"react-test-renderer": "16.3.1",
"storybook-addon-jsx": "^5.3.0"
},
"importSort": {
".js, .es": {
"parser": "babylon",
"style": "module"
}
}
}