-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "internotes",
"version": "0.0.2",
"private": true,
"scripts": {
"android": "react-native run-android",
"log-android": "react-native log-android",
"ios": "react-native run-ios",
"log-ios": "react-native log-ios",
"devtools": "react-devtools",
"test": "jest",
"set-up-port": "adb reverse tcp:8081 tcp:8081",
"lint": "eslint . --fix"
},
"dependencies": {
"crypto-js": "3.1.9-1",
"prop-types": "15.6.2",
"react": "16.4.1",
"react-native": "0.55.4",
"react-native-background-fetch": "^2.4.3",
"react-navigation": "2.5.3"
},
"devDependencies": {
"babel-eslint": "8.2.5",
"babel-jest": "23.2.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^5.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-react": "7.10.0",
"eslint-plugin-react-native": "^3.2.1",
"husky": "0.14.3",
"jest": "23.2.0",
"lint-staged": "7.2.0",
"prettier": "1.13.6",
"react-test-renderer": "16.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}