-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
71 lines (71 loc) · 2.06 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": "quranicaudio",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios": "react-native run-ios",
"test": "jest",
"lint": "eslint . --ext .js",
"lint:fix": "npm run lint -- --fix",
"postinstall": "react-native link",
"prettier": "prettier --single-quote --write",
"precommit-hook": "lint-staged",
"release:android": "cd android && ./gradlew assembleRelease"
},
"dependencies": {
"babel-eslint": "^8.0.2",
"core-decorators": "0.19.0",
"eslint": "^4.11.0",
"native-base": "^2.8.0",
"prop-types": "^15.6.0",
"randomcolor": "^0.5.3",
"react": "^16.4.2",
"react-native": "^0.56.0",
"react-native-modal-filter-picker": "^1.3.4",
"react-native-music-control": "^0.7.3",
"react-native-progress": "^3.5.0",
"react-native-sentry": "^0.39.0",
"react-native-slider": "^0.11.0",
"react-native-track-player": "github:mahmoudfelfel/react-native-track-player#dev",
"react-native-vector-icons": "^5.0.0",
"react-native-video": "^3.1.0",
"react-navigation": "^2.9.3",
"react-navigation-redux-helpers": "^2.0.5",
"react-redux": "5.0.7",
"redux": "4.0.0",
"redux-thunk": "2.3.0",
"styled-components": "^3.3.0",
"zero-fill": "^2.2.3"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.55",
"babel-jest": "21.2.0",
"babel-plugin-react-require": "3.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-es2015": "6.24.0",
"babel-preset-react-native": "^5.0.2",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "^7.4.0",
"jest": "21.2.1",
"lint-staged": "^3.4.1",
"precommit": "^1.2.2",
"prettier": "^1.14.0",
"react-test-renderer": "16.0.0"
},
"jest": {
"preset": "react-native"
},
"pre-commit": [
"npm run recommit-hook"
],
"lint-staged": {
"*.js": [
"npm run prettier",
"npm run lint:fix",
"git add"
]
}
}