-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 4.08 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 4.08 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "APP_ENV=pro expo start",
"android": "APP_ENV=pro expo start --android",
"ios": "APP_ENV=pro expo start --ios",
"web": "APP_ENV=pro expo start --web",
"eject": "expo eject",
"commit": "git-cz",
"precommit": "yarn prettier:write && yarn ts && lint-staged",
"update:packages": "yarn upgrade-interactive --latest",
"lint": "eslint --fix --ext=jsx,ts,tsx src",
"prettier:write": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"ts": "npx tsc",
"publish:dev": "APP_ENV=pro expo publish --release-channel dev",
"publish:staging": "APP_ENV=pro expo publish --release-channel staging",
"publish:prod": "APP_ENV=pro expo publish --release-channel prod",
"build:android:dev": "APP_ENV=pro expo build:android --release-channel dev",
"build:android:staging": "APP_ENV=pro expo build:android --release-channel staging",
"build:android:prod": "APP_ENV=pro expo build:android --release-channel prod",
"url:apk": "expo url:apk",
"lite:start": "APP_ENV=lite expo start",
"lite:android": "APP_ENV=lite expo start --android",
"lite:ios": "APP_ENV=lite expo start --ios",
"lite:web": "APP_ENV=lite expo start --web",
"lite:publish:dev": "APP_ENV=lite expo publish --release-channel dev",
"lite:publish:staging": "APP_ENV=lite expo publish --release-channel staging",
"lite:publish:prod": "APP_ENV=lite expo publish --release-channel prod",
"lite:build:android:dev": "APP_ENV=lite expo build:android --release-channel dev",
"lite:build:android:staging": "APP_ENV=lite expo build:android --release-channel staging",
"lite:build:android:prod": "APP_ENV=lite expo build:android --release-channel prod"
},
"dependencies": {
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-community/masked-view": "0.1.11",
"@react-navigation/native": "^6.0.6",
"@react-navigation/stack": "^6.0.11",
"dayjs": "^1.10.7",
"expo": "^46.0.0",
"expo-app-loading": "~2.1.0",
"expo-font": "~10.2.0",
"expo-linear-gradient": "~11.4.0",
"expo-linking": "~3.2.2",
"expo-local-authentication": "~12.3.0",
"expo-localization": "~13.1.0",
"expo-network": "~4.3.0",
"expo-sqlite": "~10.3.0",
"expo-status-bar": "~1.4.0",
"expo-store-review": "~5.3.0",
"i18n-js": "^3.8.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.4",
"react-native-gesture-handler": "~2.5.0",
"react-native-pell-rich-editor": "^1.8.6",
"react-native-reanimated": "^2.9.1",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-svg": "12.3.0",
"react-native-url-polyfill": "^1.3.0",
"react-native-web": "~0.18.7",
"react-native-webview": "11.23.0",
"styled-components": "^5.3.3",
"uuid-random": "^1.3.2",
"xss": "^1.0.10"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@types/i18n-js": "^3.8.2",
"@types/react": "~18.0.0",
"@types/react-dom": "~18.0.0",
"@types/react-native": "~0.69.1",
"@types/styled-components-react-native": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-plugin-module-resolver": "^4.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.5.0",
"eslint-config-airbnb": "19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.3",
"prettier": "^2.5.1",
"typescript": "^4.6.3"
},
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc"
}
},
"lint-staged": {
"*.{js,ts,tsx,json,css,md}": [
"eslint --fix --ext=jsx,ts,tsx src",
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}