-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.61 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
{
"name": "pokedex-app",
"version": "1.0.0",
"private": true,
"main": "index.ts",
"description": "Pokédex App that consumes the PokéAPI to display information on all existing Pokémon.",
"author": "Gabriel Rapucci Gonzalez <gabrielrapuccigonzalez14@hotmail.com> (https://gabrielrapucci.com.br)",
"homepage": "https://github.com/gabrielrg14/pokedex-app#readme",
"repository": {
"type": "git",
"url": "https://github.com/gabrielrg14/pokedex-app"
},
"bugs": {
"url": "https://github.com/gabrielrg14/pokedex-app/issues"
},
"keywords": [
"react-native",
"expo",
"pokédex",
"pokédex-app",
"pokéAPI",
"front-end",
"portfolio"
],
"license": "MIT",
"scripts": {
"start": "expo start",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"android": "expo start --android",
"ios": "expo start --ios"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-picker/picker": "2.4.10",
"@react-navigation/drawer": "^6.6.6",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"axios": "^1.6.2",
"expo": "~49.0.15",
"expo-linear-gradient": "~12.3.0",
"expo-linking": "~5.0.2",
"expo-status-bar": "~1.6.0",
"expo-updates": "~0.18.18",
"react": "18.2.0",
"react-native": "0.72.6",
"react-native-gesture-handler": "~2.12.0",
"react-native-picker-select": "^9.0.0",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"styled-components": "^6.1.1",
"zustand": "^4.4.7"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/react-native": "^12.4.3",
"@types/jest": "^29.5.11",
"@types/react": "~18.2.14",
"@types/react-native": "^0.72.8",
"@types/styled-components": "^5.1.32",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^7.9.0",
"babel-plugin-inline-import": "^3.0.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.1",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^29.7.0",
"jest-expo": "^49.0.0",
"msw": "^2.0.13",
"prettier": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
}
}