-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"main": "./src/index.tsx",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"build:web": "npx expo export --output-dir web-build --platform web",
"test": "jest --watch",
"lint": "eslint src"
},
"dependencies": {
"@expo/metro-runtime": "~3.1.3",
"@expo/webpack-config": "~19.0.1",
"@reduxjs/toolkit": "^2.1.0",
"expo": "~50.0.6",
"expo-status-bar": "~1.11.1",
"immer": "^10.0.3",
"jest": "^29.3.1",
"jest-expo": "~50.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.73.4",
"react-native-svg": "^14.1.0",
"react-native-web": "~0.19.6",
"react-redux": "^9.1.0",
"redux-undo": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@types/jest": "^29.5.12",
"@types/react": "~18.2.45",
"eslint": "^8.56.0",
"eslint-config-universe": "^12.0.0",
"prettier": "^3.2.5",
"react-refresh": "^0.14.0",
"typescript": "^5.1.3",
"webpack-hot-middleware": "^2.26.1"
},
"jest": {
"preset": "jest-expo"
},
"private": true
}