This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
forked from diablourbano/HobbesUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.68 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
84
85
86
87
88
89
90
91
92
93
94
{
"name": "hobbesui",
"version": "0.1.0",
"main": "./index.js",
"license": "Apache-2.0",
"keywords": [
"HobbesUI",
"Styleguide",
"Storybook like",
"UI preview"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"jest": "jest --colors",
"jest-watch": "jest --colors --watchAll",
"jest-update": "jest --colors -u"
},
"jest": {
"preset": "react-native",
"verbose": true,
"modulePaths": [
"<rootDir>/functional/",
"<rootDir>/ui/",
"<rootDir>/utils/"
],
"setupFiles": [
"<rootDir>/jest/setup.js"
],
"testResultsProcessor": "./node_modules/jest-html-reporter",
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**"
],
"coverageReporters": [
"lcov"
],
"coverageDirectory": "./reports",
"transformIgnorePatterns": [
"node_modules/(?!(react-native|react-native-htmlview|react-navigation|react-native-safe-area-view|react|react-navigation-fluid-transitions)/)"
]
},
"peerDependencies": {
"react": "^16.8.3",
"react-native": "^0.60.0",
"react-navigation": "^4.0.10",
"react-navigation-drawer": "^2.2.2",
"@react-native-community/async-storage": "^1.6.2"
},
"dependencies": {
"lodash.capitalize": "^4.2.1",
"lodash.clone": "^4.5.0",
"lodash.filter": "^4.6.0",
"lodash.findindex": "^4.6.0",
"lodash.foreach": "^4.5.0",
"lodash.groupby": "^4.6.0",
"lodash.isempty": "^4.4.0",
"lodash.map": "^4.6.0",
"styled-components": "^3.2.5"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/runtime": "^7.4.3",
"babel-bridge": "^1.12.11",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^23.4.2",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-styled-components": "^1.5.1",
"babel-preset-react-native": "^4.0.1",
"babel-runtime": "7.0.0-beta.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.2.1",
"jest": "^23.4.2",
"jest-html-reporter": "2.0.0",
"jest-react-native": "^18.0.0",
"jest-styled-components": "^5.0.1",
"metro-react-native-babel-preset": "^0.51.1",
"prop-types": "^15.6.1",
"react-dom": "^16.3.0-alpha.1",
"react-test-renderer": "16.6.3"
}
}