forked from callstack/react-native-paper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
127 lines (127 loc) · 3.37 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "react-native-paper",
"version": "3.0.0-alpha.1",
"description": "Material design for React Native",
"main": "src/index.js",
"typings": "typings/index.d.ts",
"files": [
"src/",
"dist/",
"typings/",
"types.js",
"babel.js"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/callstack/react-native-paper.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/callstack/react-native-paper/issues"
},
"homepage": "https://callstack.github.io/react-native-paper",
"keywords": [
"android",
"ios",
"react native",
"component library",
"ui kit",
"material design",
"bootstrap"
],
"scripts": {
"flow": "flow",
"typescript": "tsc --noEmit --skipLibCheck --jsx react ./__ts-tests__/*",
"typescript:generate": "node ./scripts/generate-ts-tests.js",
"lint": "eslint .",
"test": "jest",
"prepare": "node ./scripts/generate-mappings",
"release": "release-it",
"bootstrap": "yarn && yarn --cwd example && yarn --cwd docs",
"docs": "yarn --cwd docs",
"example": "yarn --cwd example"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@callstack/react-theme-provider": "^1.0.7",
"color": "^2.0.1",
"create-react-context": "^0.2.3",
"hoist-non-react-statics": "^3.1.0",
"react-lifecycles-compat": "^3.0.4",
"react-native-safe-area-view": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/runtime": "^7.1.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/react": "^16.4.18",
"@types/react-native": "^0.57.7",
"all-contributors-cli": "^6.1.1",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-test": "^0.1.1",
"chalk": "^2.4.1",
"commitlint": "^7.5.2",
"conventional-changelog-cli": "^2.0.11",
"dedent": "^0.7.0",
"eslint": "^4.19.1",
"eslint-config-callstack-io": "^1.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react-native": "^3.5.0",
"flow-bin": "~0.78.0",
"glob": "^7.1.3",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jest-file-snapshot": "^0.3.2",
"metro-react-native-babel-preset": "^0.49.0",
"prettier": "^1.14.3",
"react": "16.6.0-alpha.8af6728",
"react-dom": "16.6.0-alpha.8af6728",
"react-native": "~0.57.4",
"react-native-testing-library": "^1.5.0",
"react-native-vector-icons": "~6.0.2",
"react-test-renderer": "16.6.0-alpha.8af6728",
"release-it": "^7.6.2",
"rimraf": "^2.6.2",
"typescript": "^3.1.6"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-vector-icons": "*"
},
"resolutions": {
"**/babel-core": "7.0.0-bridge.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn flow check && yarn typescript && yarn test"
}
},
"jest": {
"preset": "react-native",
"cacheDirectory": "./cache/jest",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules"
],
"watchPathIgnorePatterns": [
"__fixtures__\\/[^/]+\\/(output|error)\\.js"
]
},
"greenkeeper": {
"ignore": [
"expo",
"flow-bin",
"react",
"react-dom",
"react-native",
"react-test-renderer"
]
}
}