-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
57 lines (57 loc) · 1.43 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
{
"name": "react-ui-kit-native",
"version": "0.0.20",
"description": "React Native components based on React UI Kit",
"homepage": "https://native.react-ui-kit.com",
"main": "index.js",
"jest": {
"preset": "jest-expo"
},
"scripts": {
"start": "expo start ./examples/",
"android": "expo start --android ./examples/",
"ios": "expo start --ios ./examples/",
"eject": "expo eject",
"lint": "eslint components/** utils/**",
"test": "node ./node_modules/jest/bin/jest.js --watchAll",
"docs": "docsify serve ./docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-ui-kit/native.git"
},
"keywords": [
"react",
"react-native",
"ui",
"ui-kit"
],
"author": "Hetmann Wilhelm Iohan <contact@react-ui-kit.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-ui-kit/native/issues"
},
"dependencies": {
"react-native-modal-dropdown": "^0.6.2",
"react-navigation": "^2.9.3"
},
"devDependencies": {
"docsify": "^4.7.1",
"eslint": "^5.2.0",
"eslint-config-universe": "^1.0.7",
"jest-expo": "29.0.0",
"prettier": "^1.14.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-native": "^0.56.0",
"react-native-vector-icons": "^6.0.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-vector-icons": "*"
},
"eslintConfig": {
"extends": "universe/native"
}
}