forked from nkzw-tech/expo-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.84 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.84 KB
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
{
"name": "nkzw-app",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "expo-router/entry",
"scripts": {
"android": "expo run:android",
"dev": "expo start",
"dev:setup": "pnpm fbtee:all",
"fbtee:all": "pnpm fbtee collect && pnpm fbtee translate",
"format": "prettier --experimental-cli --write .",
"format-graphql": "./scripts/format-graphql-schema.tsx",
"preinstall": "command -v git >/dev/null 2>&1 && git config core.hooksPath git-hooks || exit 0",
"ios": "expo run:ios",
"lint": "eslint --cache .",
"lint:format": "prettier --experimental-cli --cache --check .",
"prebuild": "expo prebuild",
"start": "expo start --dev-client",
"test": "NODE_OPTIONS='--no-experimental-detect-module' npm-run-all --parallel tsc:check vitest:run lint lint:format",
"tsc:check": "tsc",
"vitest:run": "vitest run",
"web": "expo start --web"
},
"dependencies": {
"@expo/vector-icons": "^15.0.2",
"@gorhom/bottom-sheet": "^5.2.6",
"@legendapp/list": "^2.0.4",
"@nkzw/core": "^1.3.0",
"@nkzw/create-context-hook": "^1.1.0",
"@nkzw/stack": "^2.2.0",
"@react-navigation/native": "^7.1.17",
"@react-navigation/stack": "^7.4.8",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"classnames": "^2.5.1",
"expo": "54.0.1",
"expo-build-properties": "^1.0.8",
"expo-constants": "~18.0.8",
"expo-dev-client": "~6.0.11",
"expo-font": "^14.0.7",
"expo-linking": "~8.0.7",
"expo-localization": "^17.0.6",
"expo-router": "6.0.0",
"expo-system-ui": "~6.0.7",
"expo-web-browser": "~15.0.6",
"fbtee": "^1.5.0",
"nativewind": "^4.1.23",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-native": "~0.81.4",
"react-native-gesture-handler": "^2.28.0",
"react-native-mmkv": "^3.3.1",
"react-native-reanimated": "^4.1.0",
"react-native-safe-area-context": "^5.6.1",
"react-native-screens": "4.16.0",
"react-native-svg": "^15.13.0",
"react-native-web": "~0.21.1",
"react-native-worklets": "^0.5.1"
},
"devDependencies": {
"@effect/eslint-plugin": "^0.3.2",
"@effect/language-service": "^0.39.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@nkzw/babel-preset-fbtee": "^1.5.0",
"@nkzw/eslint-config": "^3.0.3",
"@nkzw/eslint-plugin-fbtee": "^1.5.0",
"@prettier/plugin-oxc": "^0.0.4",
"@react-native/metro-babel-transformer": "^0.81.1",
"@types/react": "~19.1.12",
"@vitejs/plugin-react": "^5.0.2",
"eslint": "^9.35.0",
"expo-build-disk-cache": "^0.6.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"prettier-plugin-tailwindcss": "^0.6.14",
"react-native-svg-transformer": "^1.5.1",
"tailwindcss": "^3.4.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"vitest-react-native": "^0.1.5"
}
}