-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.81 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": "skate-spot-frontend",
"version": "0.0.1",
"main": "node_modules/expo/AppEntry.js",
"author": "Fábio Diniz <contato@fabiodiniz.com.br>",
"license": "Copyright Holder",
"scripts": {
"serve": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"build:web": "expo build:web",
"build": "yarn build:production",
"build:production": "eas build --platform all --non-interactive --profile production",
"build:preview": "eas build --platform all --non-interactive --profile preview",
"build:development": "eas build --platform all --non-interactive --profile development",
"test": "jest",
"test:watch": "yarn test --watch",
"eject": "expo eject",
"lint": "eslint ."
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
]
},
"dependencies": {
"@expo-google-fonts/inter": "^0.2.2",
"@expo-google-fonts/roboto-slab": "^0.2.2",
"@expo/webpack-config": "^0.17.0",
"@react-navigation/elements": "^1.3.1",
"@react-navigation/native": "^6.0.8",
"@react-navigation/stack": "^6.1.1",
"axios": "^0.26.1",
"expo": "^46.0.10",
"expo-app-loading": "~2.1.0",
"expo-dev-client": "~1.3.0",
"expo-font": "~10.2.0",
"expo-linking": "~3.2.2",
"expo-status-bar": "~1.4.0",
"firebase": "^9.6.10",
"mobx": "^6.5.0",
"mobx-react-lite": "^3.3.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.6",
"react-native-gesture-handler": "~2.5.0",
"react-native-web": "~0.18.7",
"reflect-metadata": "^0.1.13",
"styled-components": "^5.3.3",
"tsyringe": "^4.7.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-native": "^9.0.0",
"@types/jest": "^27.4.1",
"@types/react": "18.0.0",
"@types/react-native": "~0.69.6",
"@types/styled-components": "^5.1.23",
"@types/styled-components-react-native": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.11.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"jest": "^27.5.1",
"jest-expo": "^44.0.1",
"prettier": "^2.6.0",
"react-native-safe-area-context": "^4.0.2",
"react-native-screens": "^3.13.0",
"typescript": "~4.3.5"
},
"resolutions": {
"styled-components": "^5"
},
"private": true
}