-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.27 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
{
"name": "Sonix",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"startrs": "npm start -- --reset-cache",
"test": "jest",
"checkdeps": "ncu --packageFile package.json",
"i5s": "react-native run-ios --simulator=\"iPhone 5s\"",
"i6": "react-native run-ios --simulator=\"iPhone 6\"",
"diawi": "cd ios && fastlane di && cd ..",
"a": "react-native run-android",
"ar": "react-native run-android --variant=\"release\"",
"fixcode": "standard --fix",
"lintdiff": "git diff --name-only --cached --relative | grep '\\.js$' | xargs standard | snazzy",
"postinstall": "sh ./scripts/post-install.sh",
"precommit": "lint-staged && npm run lint",
"prepush": "npm run git-hook && npm run fixcode",
"lint": "standard --verbose | snazzy",
"git-hook": "npm run lint -s"
},
"dependencies": {
"dayjs": "^1.7.4",
"formik": "^1.0.2",
"glamorous-native": "^1.4.0",
"lodash": "^4.17.10",
"querystringify": "^2.0.0",
"react": "^16.4.2",
"react-native": "0.56.0",
"react-native-i18n": "^2.0.15",
"react-native-navigation": "^2.0.2439",
"react-native-onesignal": "^3.2.6",
"react-native-vector-icons": "^5.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.0.0-beta.56",
"@babel/preset-flow": "^7.0.0-beta.56",
"@babel/preset-react": "^7.0.0-beta.56",
"babel-eslint": "^8.2.6",
"babel-jest": "23.4.2",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-react-native": "^5",
"eslint-plugin-flowtype": "^2.50.0",
"jest": "23.4.2",
"lint-staged": "^7.2.0",
"prettier": "^1.14.0",
"prop-types": "^15.6.2",
"react-test-renderer": "^16.4.2",
"snazzy": "^7.1.1",
"standard": "^11.0.1"
},
"jest": {
"preset": "react-native"
},
"standard": {
"parser": "babel-eslint",
"plugins": [
"flowtype"
],
"ignore": [
"**/out/",
"/node_modules/"
],
"globals": [
"describe",
"test",
"jest",
"expect",
"fetch",
"navigator",
"__DEV__",
"XMLHttpRequest",
"FormData",
"React$Element",
"DatePickerAndroid",
"alert",
"string",
"number"
]
}
}