-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.18 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
{
"name": "SysBoilerplateRN",
"version": "0.0.1",
"private": true,
"description": "This is the dependency for Sign In With Apple.",
"license": "MIT",
"author": "Pramod Sharma",
"keywords": [
"react-native"
],
"scripts": {
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"lint-check": "eslint .",
"rename": "react-native-rename",
"postinstall": "npx jetify",
"android": "react-native run-android",
"ios": "react-native run-ios",
"prettier": "prettier \"app/**/*.+(js|jsx|ts|tsx|json)\"",
"format": "yarn prettier --write",
"validate": "yarn prettier --list-different && yarn lint"
},
"dependencies": {
"@react-native-community/async-storage": "^1.11.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-native": "^0.63.2",
"react-native-gesture-handler": "^1.7.0",
"react-native-root-toast": "^3.2.1",
"react-native-screens": "^2.10.1",
"react-native-splash-screen": "^3.2.0",
"react-navigation": "^4.0.10",
"react-navigation-stack": "^1.9.4",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-persist": "^5.10.0",
"redux-saga": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/runtime": "^7.10.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.1.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jetifier": "^1.6.4",
"lint-diff": "^1.2.1",
"lint-staged": "^10.2.11",
"metro-react-native-babel-preset": "^0.61.0",
"prettier": "^1.16.4",
"react-native-rename": "^2.4.1",
"react-test-renderer": "16.13.1"
},
"jest": {
"preset": "react-native"
},
"husky": {
"hooks": {
"pre-push": "yarn validate"
}
}
}