forked from Paattis/ideabarrel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.67 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
{
"name": "ideabarrel",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"checkCodeStyle": "npx prettier src --check",
"test": "npx jest"
},
"jest": {
"preset": "jest-expo",
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.svg$": "jest-svg-transformer"
},
"moduleFileExtensions": [
"js",
"json",
"jsx",
"ts",
"tsx",
"node"
]
},
"dependencies": {
"@babel/eslint-parser": "^7.19.1",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.1",
"date-fns": "^2.29.3",
"eslint-plugin-react-native": "^4.0.0",
"expo": "~46.0.16",
"expo-image-picker": "~13.3.1",
"expo-secure-store": "~11.3.0",
"expo-status-bar": "~1.4.0",
"jest": "^26.6.3",
"jest-expo": "^46.0.1",
"jest-svg-transformer": "^1.0.0",
"mock-async-storage": "^2.2.0",
"numeral": "^2.0.6",
"react": "18.0.0",
"react-hook-form": "^7.39.1",
"react-native": "0.69.6",
"react-native-paper": "^5.0.0-rc.9",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-svg": "12.3.0",
"react-native-svg-transformer": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@testing-library/react-native": "^11.4.0",
"eslint": "^8.26.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.7.1"
},
"private": true
}