forked from callstack/react-native-paper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.77 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
{
"name": "react-native-paper",
"version": "2.2.4",
"description": "Material design for React Native",
"main": "src/index.js",
"typings": "typings/index.d.ts",
"files": [
"src/",
"dist/",
"typings/",
"types.js",
"babel.js"
],
"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": "node ./scripts/generate-ts-tests.js && tsc --noEmit --skipLibCheck --jsx react ./__ts-tests__/*",
"lint": "eslint .",
"test": "jest",
"prepare": "node ./scripts/generate-mappings",
"bootstrap": "yarn && yarn --cwd example && yarn --cwd docs",
"release": "release-it"
},
"husky": {
"hooks": {
"commit-msg": "node ./scripts/validate-commit-message.js $HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn flow && yarn typescript && yarn test"
}
},
"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"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/runtime": "^7.1.2",
"@types/react": "^16.4.18",
"@types/react-native": "^0.57.7",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-tester": "^5.5.1",
"chalk": "^2.4.1",
"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.1.3",
"jest": "^23.6.0",
"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-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": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules"
]
},
"resolutions": {
"**/babel-core": "7.0.0-bridge.0"
},
"sideEffects": false
}