forked from utkarsh867/bookbytes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 KB
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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject"
},
"dependencies": {
"expo": "^32.0.0",
"husky": "^1.3.1",
"native-base": "^2.12.1",
"parse": "^1.11.1",
"prop-types": "^15.7.2",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-native-action-button": "^2.8.5",
"react-native-elements": "^1.1.0",
"react-native-fontawesome": "^6.0.1",
"react-native-paper": "^2.15.2",
"react-navigation": "^3.6.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-preset-expo": "^5.0.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"eslint-plugin-react": "^7.12.4",
"lint-staged": "^8.1.5",
"prettier": "1.16.4"
},
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}