-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.28 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "expo-minimal-boilerplate",
"version": "1.0.0",
"description": "A minimal boilerplate for Expo projects",
"author": "Julien Tilap LA VINH <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": "20.10.0"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/tilap/expo-minimal-boilerplate.git"
},
"bugs": {
"url": "https://github.com/tilap/expo-minimal-boilerplate/issues"
},
"homepage": "https://github.com/tilap/expo-minimal-boilerplate#readme",
"keywords": [
"expo",
"react-native",
"boilerplate",
"minimal"
],
"scripts": {
"commit": "cz",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint-staged-husky": "lint-staged",
"lint": "eslint .",
"prepare": "husky || true",
"start": "expo start",
"test:update": "jest -u --coverage=false",
"test:watch": "jest -o --watch --coverage=false --passWithNoTests",
"test": "jest --coverage=false --passWithNoTests",
"tsc:watch": "tsc --noEmit --watch",
"tsc": "tsc --noEmit",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
},
"dependencies": {
"@expo-google-fonts/montserrat": "^0.2.0",
"@expo/config": "~9.0.0",
"@expo/vector-icons": "^14.0.2",
"@react-native-async-storage/async-storage": "^2.0.0",
"@react-navigation/native": "^6.1.14",
"@react-navigation/stack": "^6.3.25",
"expo": "^51.0.20",
"expo-application": "^5.9.1",
"expo-device": "^6.0.2",
"expo-font": "~12.0.8",
"expo-localization": "~15.0.3",
"expo-media-library": "^16.0.5",
"expo-screen-orientation": "~7.0.5",
"expo-splash-screen": "~0.27.5",
"expo-store-review": "^7.0.2",
"i18n-js": "^4.4.3",
"jest-expo": "~51.0.3",
"metro-react-native-babel-preset": "^0.66.2",
"moment": "^2.29.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.3",
"react-native-gesture-handler": "~2.16.1",
"react-native-logs": "^5.1.0",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-webview": "13.8.6",
"ts-deepmerge": "^7.0.1",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/react-native": "^12.4.3",
"@types/i18n-js": "^3.8.4",
"@types/jest": "^29.5.12",
"@types/react-redux": "^7.1.25",
"@types/redux-mock-store": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"babel-plugin-module-resolver": "^5.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^9.1.6",
"jest": "^29.3.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"react-test-renderer": "^18.2.0",
"typescript": "~5.3.3"
}
}