-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.07 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
{
"name": "code-reader",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"tunnel": "expo start --tunnel",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install",
"gen:i18n": "./i18n/utils/generate-i18n-keys.ts",
"release": "semantic-release"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"@react-native-async-storage/async-storage": "1.17.11",
"expo": "~48.0.6",
"expo-barcode-scanner": "~12.3.2",
"expo-camera": "~13.2.1",
"expo-constants": "~14.2.1",
"expo-linking": "~4.0.1",
"expo-localization": "~14.1.1",
"expo-router": "^1.2.2",
"expo-status-bar": "~1.4.4",
"i18next": "^22.4.11",
"lodash.assignwith": "^4.2.0",
"lodash.setwith": "^4.3.2",
"native-base": "^3.4.28",
"react": "18.2.0",
"react-hook-form": "^7.43.5",
"react-i18next": "^12.2.0",
"react-native": "0.71.6",
"react-native-gesture-handler": "~2.9.0",
"react-native-safe-area-context": "^4.5.0",
"react-native-screens": "~3.20.0",
"react-native-svg": "13.4.0"
},
"resolutions": {
"react-native-svg": "13.4.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/lodash.assignwith": "^4.2.7",
"@types/lodash.setwith": "^4.3.7",
"@types/react": "~18.0.14",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.35.0",
"eslint-config-universe": "^11.2.0",
"husky": "^8.0.0",
"prettier": "^2.8.4",
"semantic-release": "^19.0.5",
"typescript": "^4.9.4"
},
"private": true,
"eslintConfig": {
"extends": "universe/native"
},
"overrides": {
"metro": "0.73.7",
"metro-resolver": "0.73.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"volta": {
"node": "16.14.2"
}
}