forked from vmware-archive/cabin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.15 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
{
"name": "cabin",
"version": "0.5.0",
"description": "the mobile app for Kubernetes",
"license": "Apache-2.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/bitnami/cabin"
},
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint": "eslint src",
"pre-commit-lint":
"LIST=`git diff --name-only --cached | grep .*\\.js$`;if [ \"$LIST\" ]; then eslint $LIST; fi",
"prepare": "patch-package",
"test": "jest"
},
"jest": {
"preset": "jest-react-native"
},
"dependencies": {
"alt": "^0.18.6",
"alt-container": "^1.1.1",
"alt-utils": "^2.0.0",
"base-64": "^0.1.0",
"immutable": "3.8.1",
"intl": "^1.2.5",
"intl-messageformat": "1.3.0",
"intl-relativeformat": "1.3.0",
"js-yaml": "^3.7.0",
"lodash": "^4.17.4",
"qs": "^6.5.0",
"react": "16.0.0-alpha.12",
"react-native": "^0.48.1",
"react-native-actionsheet": "^2.3.0",
"react-native-config": "^0.6.0",
"react-native-fetch-blob": "^0.10.8",
"react-native-fs": "^2.5.1",
"react-native-google-signin": "^0.11.0",
"react-native-keyboard-aware-scroll-view": "^0.3.0",
"react-native-material-kit": "kemcake/react-native-material-kit",
"react-native-navigation": "^1.1.235",
"react-native-orientation": "yamill/react-native-orientation",
"react-native-parsed-text": "kemcake/react-native-parsed-text",
"react-native-safari-view": "naoufal/react-native-safari-view",
"react-native-snackbar": "^0.4.2",
"react-native-sortable-listview": "^0.2.5",
"react-native-tag-input": "jwohlfert23/react-native-tag-input"
},
"devDependencies": {
"babel-eslint": "6.1.0",
"babel-jest": "16.0.0",
"babel-plugin-module-alias": "1.6.0",
"babel-preset-react-native": "1.9.0",
"eslint": "3.0.0",
"eslint-plugin-react": "5.2.2",
"ghooks": "1.3.2",
"jest": "16.0.1",
"jest-cli": "13.0.0",
"jest-react-native": "16.0.0",
"patch-package": "^3.3.6",
"react-addons-perf": "^15.4.2",
"react-test-renderer": "^15.6.1"
},
"config": {
"ghooks": {
"pre-commit": "npm run pre-commit-lint"
}
}
}