-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.13 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
{
"name": "RamdaPlay",
"version": "0.0.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --config .prettierrc --write 'src/**/*.{js,jsx,ts,tsx}'",
"type-check": "tsc --noEmit",
"test-fastlane-android": "cd ./android && bundle exec fastlane android test",
"build-detox-ios": "detox build -c ios.sim.release",
"test-detox-ios": "detox test -c ios.sim.release",
"build-detox-android": "detox build -c android.emu.release -l verbose",
"test-detox-android": "detox test -c android.emu.release -l verbose"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.9.0",
"@react-navigation/stack": "^5.13.0",
"ramda": "^0.27.1",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-gesture-handler": "^1.9.0",
"react-native-reanimated": "^2.0.0-rc.3",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.15.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"@twgdev/prettier-config": "^1.0.2",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/ramda": "^0.27.35",
"@types/react-native": "^0.63.2",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"detox": "^18.6.2",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-native-wcandillon": "^3.3.6",
"eslint-config-twg": "1.0.4",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.2.1",
"react-test-renderer": "16.13.1",
"ts-jest": "^26.5.2",
"typescript": "^4.1.4",
"@testing-library/jest-native": "^3.4.3",
"@testing-library/react-native": "^7.1.0"
},
"jest": {
"preset": "react-native",
"collectCoverage": true,
"coverageReporters": ["html", "lcov"],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"setupFiles": [
"./setupJest.ts",
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testPathIgnorePatterns" : [
"<rootDir>/e2e",
"<rootDir>/assetsTransformer.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/assetsTransformer.js",
"\\.(css|less)$": "<rootDir>/assetsTransformer.js"
}
}
}