-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
65 lines (65 loc) · 1.84 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
{
"name": "react-native-ui-xg",
"version": "0.0.6",
"description": "A suit of react native ui.",
"main": "index.js",
"private": false,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "eslint . --fix",
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls",
"check": "node ./tools/checkGit",
"new": "node ./tools/new",
"ios": "react-native run-ios",
"android": "react-native run-android"
},
"dependencies": {
"react-native-datepicker": "^1.5.0",
"react-native-drawer-menu": "^0.2.3",
"react-native-grading": "^1.0.3",
"react-native-label-select": "^1.0.10",
"react-native-zoom-image": "^0.1.1",
"react-native-buttons": "^0.0.4",
"react-native-stylesheet-xg": "^1.1.0",
"react-native-input-xg": "^0.0.2",
"react-native-confirm": "^0.0.1",
"react-native-link-xg": "^0.0.1",
"react-native-tab-xg": "^0.0.1",
"react-native-accordion-xg": "^0.0.1",
"react-native-action-sheet-xg": "^0.0.1",
"react-native-calendar-select": "^0.1.0"
},
"devDependencies": {
"babel-jest": "20.0.3",
"babel-preset-react-native": "2.1.0",
"coveralls": "^2.11.16",
"cz-conventional-changelog": "^1.2.0",
"enzyme": "^2.9.1",
"inquirer": "^3.0.5",
"jest": "20.0.4",
"jsdom": "^9.11.0",
"pre-commit": "^1.2.2",
"react": "16.0.0-alpha.12",
"react-native": "0.46.2",
"react-native-navigation": "^1.1.134",
"react-test-renderer": "16.0.0-alpha.12"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/",
"tools/"
]
},
"pre-commit": [
"check",
"lint"
]
}