-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.76 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
{
"name": "guess-it",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "expo run-android",
"start": "expo start",
"test": "jest",
"lint": "eslint **/*{.ts,.tsx}",
"typescript": "yarn tsc --noEmit"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.9.8",
"@react-navigation/stack": "^5.10.0",
"expo": "^46.0.0",
"expo-splash-screen": "~0.16.1",
"react": "18.0.0",
"react-native": "0.69.5",
"react-native-gesture-handler": "~2.5.0",
"react-native-paper": "^4.12.4",
"react-native-reanimated": "~2.9.1",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-vector-icons": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@react-native-community/eslint-config": "1.1.0",
"@types/react": "~18.0.0",
"@types/react-native": "~0.69.1",
"babel-jest": "^25.1.0",
"eslint": "7.32.0",
"jest": "^26.6.3",
"react-test-renderer": "16.13.1",
"prettier": "^2.5.1",
"typescript": "^4.6.3"
},
"jest": {
"preset": "react-native"
},
"eslintConfig": {
"root": true,
"extends": "@react-native-community",
"plugins": [
"react",
"react-native"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"semi": "off",
"comma-dangle": "off",
"react-native/no-inline-styles": "off",
"react-native/no-unused-styles": 1,
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off"
},
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"react-native/react-native": true
}
},
"prettier": {
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"useTabs": true,
"bracketSameLine": true,
"proseWrap": "never",
"trailingComma": "none"
}
}