-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.19 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
{
"name": "ups",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"generate": "graphql-codegen --config codegen.yml",
"compile": "npm run generate && tsc",
"postinstall": "npm run compile",
"start": "npm run compile && expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"build:tailwind": "tailwindcss --input input.css --output tailwind.css --no-autoprefixer && tailwind-rn",
"dev:tailwind": "concurrently \"tailwindcss --input input.css --output tailwind.css --no-autoprefixer --watch\" \"tailwind-rn --watch\""
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@react-navigation/bottom-tabs": "^6.4.0",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.0",
"@rneui/base": "^4.0.0-rc.6",
"@rneui/themed": "^4.0.0-rc.6",
"expo": "~46.0.13",
"expo-font": "~10.2.0",
"expo-status-bar": "~1.4.0",
"graphql": "^15.8.0",
"lodash": "^4.17.21",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.6",
"react-native-maps": "^0.31.1",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"tailwind-rn": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@graphql-codegen/cli": "^2.13.1",
"@graphql-codegen/client-preset": "^1.0.2",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-resolvers": "^2.7.3",
"@react-native-community/eslint-config": "^3.1.0",
"@types/lodash": "^4.14.186",
"@types/react": "~18.0.14",
"@types/react-native": "~0.69.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"concurrently": "^7.4.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-native": "^4.0.0",
"postcss": "^8.4.16",
"prettier": "2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.4"
},
"private": true
}