forked from callstack/react-native-paper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.96 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
{
"name": "react-native-paper",
"version": "2.0.1",
"description": "Material design for React Native",
"main": "src/index.js",
"files": [
"src/",
"dist/",
"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": {
"commitmsg": "node ./scripts/validate-commit-message.js $GIT_PARAMS",
"precommit": "yarn lint && yarn flow && yarn test",
"flow": "flow",
"lint": "eslint .",
"test": "jest",
"prepare": "node ./scripts/generate-mappings",
"bootstrap": "yarn && yarn --cwd example && yarn --cwd docs"
},
"dependencies": {
"@callstack/react-theme-provider": "^1.0.3",
"color": "^2.0.1",
"create-react-context": "^0.2.2",
"hoist-non-react-statics": "^2.5.0",
"react-lifecycles-compat": "^3.0.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-tester": "^5.0.0",
"babel-preset-react-native": "^4.0.0",
"eslint": "^4.19.1",
"eslint-config-callstack-io": "^1.1.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react-native": "^3.2.1",
"flow-bin": "~0.67.1",
"husky": "^0.14.3",
"jest": "^23.0.0",
"prettier": "^1.12.1",
"react": "16.3.1",
"react-dom": "16.3.1",
"react-native": "~0.55.4",
"react-native-vector-icons": "~4.6.0",
"react-test-renderer": "16.3.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-vector-icons": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules"
]
},
"sideEffects": false
}