-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.23 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "kmart-radio",
"version": "1.0.1",
"private": true,
"scripts": {
"prepare": "git config core.hooksPath ./scripts/hooks",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"licenses": "npm-license-crawler --onlyDirectDependencies --json src/Components/Explorer/LicensesPage/licenses.json",
"reset": "./scripts/reset.sh",
"gen": "./scripts/generateComponent.sh",
"check-packages": "node ./scripts/checkForMaliciousPackages.js",
"prettier": "prettier --check src",
"prettier:write": "prettier --write src"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.18.1",
"@react-native-picker/picker": "^2.4.8",
"i18n-js": "^3.8.0",
"lodash.memoize": "^4.1.2",
"npm-license-crawler": "^0.2.1",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-native": "0.71.8",
"react-native-device-info": "^10.3.0",
"react-native-localize": "^2.2.4",
"react-native-pager-view": "^6.1.2",
"react-native-svg": "^13.6.0",
"react-native-track-player": "^3.2.0",
"react-native-vector-icons": "^9.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/react-native": "^11.5.0",
"@tsconfig/react-native": "^2.0.2",
"@types/i18n-js": "^3.8.4",
"@types/jest": "^29.2.1",
"@types/lodash.memoize": "^4.1.7",
"@types/react": "^18.0.24",
"@types/react-native-vector-icons": "^6.4.13",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.2.1",
"eslint": "^8.19.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.2.1",
"metro-react-native-babel-preset": "0.73.9",
"prettier": "^2.7.1",
"react-test-renderer": "18.2.0",
"typescript": "4.8.4"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"@react-native-community"
],
"ignorePatterns": [
"jest/*",
"*.test.js"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"eqeqeq": "off",
"consistent-this": "off"
}
},
"prettier": {
"trailingComma": "all",
"printWidth": 80,
"arrowParens": "always",
"semi": true,
"tabWidth": 2,
"singleQuote": true
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFiles": [
"<rootDir>/jest/setup.ts"
],
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "identity-obj-proxy"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(@react-native|react-native|react-native-track-player|react-native-vector-icons|react-native-device-info)/)"
]
}
}