-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.36 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
{
"name": "reactnativegithubquery",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "yarn lint:js && yarn lint:styles",
"lint:js": "eslint .",
"lint:styles": "stylelint \"**/*/styles.js\"",
"prepare": "husky install"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"@react-navigation/native": "^6.0.6",
"@react-navigation/native-stack": "^6.2.5",
"neatime": "^1.0.0",
"react": "17.0.2",
"react-native": "0.66.2",
"react-native-dotenv": "^3.3.0",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.9.0",
"react-native-svg": "^12.1.1",
"react-native-svg-transformer": "^0.14.3",
"react-native-vector-icons": "^9.0.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@stylelint/postcss-css-in-js": "^0.37.2",
"@testing-library/react-native": "^8.0.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "7.14.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.6",
"metro-react-native-babel-preset": "^0.66.2",
"postcss-syntax": "^0.36.2",
"react-test-renderer": "17.0.2",
"stylelint": "13.13.1",
"stylelint-config-hudochenkov": "^6.0.1",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-standard": "^23.0.0",
"stylelint-config-standard-scss": "^2.0.1",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^5.0.0",
"stylelint-processor-styled-components": "^1.10.0"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(react-native|@react-native|react-native-vector-icons|@react-navigation)/)"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
}
}