-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.54 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
{
"name": "react-native-enhanced-components",
"version": "0.3.0",
"description": "Enhanced React-Native components",
"main": "src/index.js",
"author": "Jaden Lemmon",
"license": "MIT",
"scripts": {
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"lodash": "^4.17.10"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"babel-core": "^7.0.0-bridge",
"babel-jest": "^23.6.0",
"babel-preset-react-native": "5.0.1",
"docz": "^0.12.9",
"docz-plugin-react-native": "^0.11.2",
"docz-theme-default": "^0.12.9",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.3",
"jest": "23.2.0",
"metro-react-native-babel-preset": "^0.49.0",
"prettier": "1.14.3",
"pretty-quick": "^1.8.0",
"react": "16.3.1",
"react-dom": "16.3.1",
"react-native": "0.56.0",
"react-test-renderer": "16.3.1",
"regenerator-runtime": "^0.12.1"
},
"peerDependencies": {
"react": ">=16.4.1",
"react-native": ">=0.56.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"preset": "react-native",
"testRegex": "\\.(test|spec)\\.(ts|tsx|js)$",
"transform": {
"\\.js$": "<rootDir>/node_modules/babel-jest"
}
}
}