forked from Riseapps-com/ReactNativeBaseProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.54 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
{
"name": "ReactNativeBaseProject",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"compile": "tsc",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --fix && prettier -c '**/*.{json,yml,md}' --write",
"test": "jest --maxWorkers=50%",
"test:watch": "jest --watch --maxWorkers=25%",
"test:coverage": "jest --collect-coverage",
"madge:cyclic": "madge -c ./",
"verify": "yarn compile && yarn lint && yarn test --passWithNoTests && yarn madge:cyclic",
"e2e": "ts-node ./scripts/e2e-ios.ts && ts-node ./scripts/e2e-android.ts",
"e2e:withSimulator": "ts-node ./scripts/e2e-ios.ts --withSimulator && ts-node ./scripts/e2e-android.ts",
"e2e:ios": "ts-node ./scripts/e2e-ios.ts",
"e2e:ios:withSimulator": "ts-node ./scripts/e2e-ios.ts --withSimulator",
"e2e:android": "ts-node ./scripts/e2e-android.ts",
"e2e:clean": "detox clean-framework-cache && detox build-framework-cache"
},
"dependencies": {
"@react-native-async-storage/async-storage": "~1.15.15",
"@react-native-community/masked-view": "~0.1.11",
"@react-navigation/native": "~6.0.6",
"@react-navigation/stack": "~6.0.11",
"axios": "^0.24.0",
"color": "^4.2.0",
"i18next": "^21.6.6",
"react": "17.0.2",
"react-i18next": "^11.15.3",
"react-native": "0.66.4",
"react-native-bootsplash": "~4.0.2",
"react-native-gesture-handler": "~1.10.3",
"react-native-localize": "~2.1.7",
"react-native-paper": "^4.11.1",
"react-native-reanimated": "1.13.3",
"react-native-safe-area-context": "~3.3.2",
"react-native-screens": "~3.10.1",
"recoil": "^0.5.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/react-native": "^9.0.0",
"@types/color": "^3.0.2",
"@types/detox": "^18.1.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-native": "^0.65.18",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"axios-mock-adapter": "^1.20.0",
"babel-jest": "^27.4.6",
"babel-loader": "^8.2.3",
"babel-plugin-module-resolver": "^4.1.0",
"detox": "19.4.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-destructuring": "^2.2.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.11.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-circus": "^27.4.6",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^12.1.7",
"madge": "^5.0.1",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"react-dom": "17.0.2",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "17.0.2",
"shelljs": "^0.8.5",
"snapshot-diff": "^0.9.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}