-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.07 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
{
"name": "expo-cicd",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eas:android:dev": "eas build --profile development --platform android",
"eas:android:release": "eas build --profile production --platform android",
"eas:ios:dev": "eas build --profile development --platform ios",
"eas:ios:release": "eas build --profile production --platform ios",
"eas:install:android": "eas device:install --platform android",
"eas:install:ios": "eas device:install --platform ios ",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"prepare": "husky"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npx --no-install commitlint --edit $1"
}
},
"dependencies": {
"@expo/metro-config": "^0.19.7",
"@expo/metro-runtime": "~4.0.0",
"@react-navigation/elements": "^2.2.4",
"@react-navigation/native": "^7.0.13",
"@react-navigation/native-stack": "^7.1.14",
"expo-dev-client": "~5.0.5",
"expo-status-bar": "~2.0.0",
"expo-updates": "~0.26.10",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.5",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.1.0",
"react-native-web": "~0.19.13"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-expo": "^0.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-native": "^4.1.0",
"expo": "^52.0.18",
"globals": "^15.13.0",
"husky": "^9.1.7"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"private": true
}