-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.23 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
{
"name": "WhatsStackIOS",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint": "^5.7.0",
"eslint-config-fullstack": "^6.0.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"fs-extra": "^7.0.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"npm-merge-driver": "^2.3.5",
"prettier": "^1.14.3",
"react-test-renderer": "^16.5.2",
"replace-in-file": "^3.4.2"
},
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"rename": "node ./bin/rename.js",
"start": "react-native start",
"test": "jest",
"fix:other": "npm run prettier --write",
"fix:js": "npm run test:js --fix",
"fix": "npm run fix:js && npm run fix:other",
"prettier": "prettier \"**/*.{json,md,scss}\"",
"test:other": "npm run prettier --list-different",
"test:js": "eslint --ignore-path .gitignore --ignore-path .prettierignore \"**/*.{js,jsx}\"",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.{json,md,scss}": [
"prettier --write",
"git add"
]
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"expo": "^30.0.1",
"fbjs": "^1.0.0",
"native-base": "^2.8.1",
"react": "^16.5.2",
"react-native": "^0.55.4",
"react-native-contacts": "^2.2.4",
"react-native-easy-grid": "^0.2.0",
"react-native-elements": "^0.19.1",
"react-native-firebase": "^5.0.0",
"react-native-gifted-chat": "^0.4.3",
"react-native-image-crop-picker": "^0.21.2",
"react-native-material-bottom-navigation": "^1.0.2",
"react-native-reversed-flat-list": "^1.0.2",
"react-native-rsa": "0.0.3",
"react-native-unified-contacts": "^1.6.2",
"react-native-vector-icons": "^6.0.2",
"react-navigation": "^2.18.0",
"react-navigation-material-bottom-tabs": "^0.4.0",
"react-redux": "^5.0.7",
"redux": "^4.0.1",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"rn-fetch-blob": "^0.10.13",
"uuid": "^3.3.2"
}
}