-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
81 lines (81 loc) · 2.25 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
{
"name": "react-native-ios-kit",
"version": "0.0.25",
"description": "The missing React Native UI Kit for iOS.",
"main": "src/index.js",
"scripts": {
"prepare": "yarn install --cwd ./website && yarn install --cwd ./example",
"flow": "flow check",
"lint": "eslint . --cache",
"test": "jest",
"release": "release-it"
},
"files": [
"src/",
"assets/icons/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/callstack/react-native-ios-kit.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/callstack/react-native-ios-kit/issues"
},
"homepage": "https://github.com/callstack/react-native-ios-kit#readme",
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-vector-icons": "*"
},
"dependencies": {
"@callstack/react-theme-provider": "^3.0.5",
"babel-plugin-module-resolver": "^4.0.0",
"color": "^3.1.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.9.0",
"@callstack/eslint-config": "^9.0.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@release-it/conventional-changelog": "^1.1.4",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.3.1",
"babel-plugin-flow-react-proptypes": "^25.1.0",
"escape-string-regexp": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-callstack-io": "^1.1.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react-native": "^3.8.1",
"flow-bin": "0.92.0",
"husky": "^4.2.5",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "2.0.5",
"react": "16.13.1",
"react-native": "^0.61.4",
"react-native-vector-icons": "~6.3.0",
"react-test-renderer": "16.13.1",
"release-it": "^13.5.7",
"svgexport": "^0.4.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn flow"
}
},
"jest": {
"preset": "react-native",
"cacheDirectory": "./cache/jest",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
],
"watchPathIgnorePatterns": [
"__fixtures__\\/[^/]+\\/(output|error)\\.js"
]
}
}