-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.46 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
{
"name": "expo-typescript-tailwind-rn",
"version": "0.0.0",
"description": "Showcase of an Expo app coded in TypeScript with Tailwind-rn",
"author": {
"email": "jonathangan@usf.edu",
"name": "Jonathan Gan"
},
"private": true,
"license": "MIT",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"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\"",
"android": "yarn run start --android",
"check-types": "tsc",
"ios": "yarn run start --ios",
"lint": "eslint --format unix \"**/*.ts\" \"**/*.tsx\"",
"start": "yarn install && expo start",
"validate": "yarn install --frozen-lockfile && yarn run lint && yarn run check-types"
},
"engines": {
"node": ">=10",
"yarn": ">=1.1"
},
"dependencies": {
"@react-navigation/native": "^6.0.10",
"@react-navigation/stack": "^6.2.1",
"concurrently": "^7.3.0",
"expo": "^45.0.0",
"expo-analytics-amplitude": "~11.2.0",
"expo-apple-authentication": "~4.2.1",
"expo-asset": "~8.5.0",
"expo-av": "~11.2.3",
"expo-barcode-scanner": "~11.3.0",
"expo-blur": "~11.1.0",
"expo-camera": "~12.2.0",
"expo-constants": "~13.1.1",
"expo-facebook": "~12.2.0",
"expo-font": "~10.1.0",
"expo-linear-gradient": "~11.3.0",
"expo-local-authentication": "~12.2.0",
"expo-sensors": "~11.3.0",
"expo-updates": "~0.13.3",
"postcss": "^8.4.14",
"react": "17.0.2",
"react-native": "0.68.2",
"react-native-gesture-handler": "~2.2.1",
"react-native-maps": "0.30.2",
"react-native-reanimated": "~2.8.0",
"react-native-safe-area-context": "4.2.4",
"react-native-screens": "~3.11.1",
"react-native-svg": "12.3.0",
"tailwind-rn": "^4.2.0",
"tailwindcss": "^3.1.6",
"twrnc": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/react": "~17.0.21",
"@types/react-native": "~0.67.6",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-preset-expo": "~9.1.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"expo-cli": "^5.4.3",
"prettier": "^2.6.2",
"typescript": "~4.3.5"
},
"resolutions": {
"@types/react": "~17.0.44"
}
}