-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.17 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
{
"name": "create-t3-turbo",
"private": true,
"engines": {
"node": ">=v18.15.0"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push db:generate",
"dev:android": "supabase start && supabase status && export PROFILE=dev && turbo dev:android --parallel",
"dev:ios": "supabase start && supabase status && export PROFILE=dev && turbo dev:ios --parallel",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"lint": "turbo lint && manypkg check",
"lint:fix": "turbo lint:fix && manypkg fix",
"type-check": "turbo type-check"
},
"dependencies": {
"@acme/eslint-config": "^0.1.0",
"@acme/expo": "^0.1.0",
"@expo-google-fonts/nunito-sans": "^0.2.3",
"@expo/webpack-config": "^18.0.4",
"@formatjs/intl-locale": "^3.3.2",
"@formatjs/intl-pluralrules": "^5.2.4",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@lingui/react": "^4.4.0",
"@manypkg/cli": "^0.20.0",
"@types/prettier": "^2.7.2",
"eslint": "^8.37.0",
"expo-asset": "~8.9.1",
"expo-clipboard": "~4.1.2",
"expo-dev-client": "^2.4.11",
"expo-font": "~11.1.1",
"expo-image": "^1.3.2",
"expo-linking": "~4.0.1",
"expo-localization": "~14.1.1",
"expo-location": "~15.1.1",
"expo-splash-screen": "~0.18.1",
"lodash-es": "^4.17.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.6",
"react": "^18.2.0",
"react-icons": "^4.10.1",
"react-intl": "^6.4.4",
"react-native": "^0.72.5",
"react-native-web": "~0.18.12",
"stripe": "^13.3.0",
"turbo": "^1.12.2",
"typescript": "^5.0.3"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@lingui/cli": "^4.4.0",
"@lingui/macro": "^4.4.0",
"babel-plugin-macros": "^3.1.0",
"tailwindcss": "^3.2.2"
}
}