-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
{
"name": "react-native-tools",
"title": "React Native Tools",
"version": "1.0.0",
"description": "TODO",
"main": "index.js",
"scripts": {
"test": "jest --collect-coverage",
"lint": "eslint lib/* --fix --max-warnings=0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rwandaopensource/react-native-tools.git",
"baseUrl": "https://github.com/rwandaopensource/react-native-tools"
},
"keywords": [
"react-native"
],
"author": {
"name": "Your Name",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "^16.8.1",
"react-native": ">=0.60.0-rc.0 <1.0.x"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-native": "^3.8.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"metro-react-native-babel-preset": "^0.58.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react": "^16.9.0",
"react-native": "^0.61.5"
},
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint lib/ --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
}
}